/usr/lib/pypy/dist-packages/libusb1.py is in pypy-libusb1 1.6.3-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 | import warnings
warnings.warn(
'Importing this module should not be needed, everything intended to be '
'exposed should be available in usb1 module.',
DeprecationWarning,
)
del warnings
from usb1.libusb1 import *
|