In the meantime, for anyone else who hits this bug while coding with pyusb
and gets the message:
usb.USBError: No error
I used the following kludge, which likely will also work for you:
...
try:
data = fd.interruptRead(endpoint.address, endpoint.maxPacketSize)
except usb.USBError as e:
if e.args != ('No error',): # http://bugs.debian.org/476796
raise e
...
-Paul
--
Why do one side of a triangle when you can do all three. Somewhere, GB.
_______________________________________________
Python-modules-team mailing list
[email protected]
http://lists.alioth.debian.org/mailman/listinfo/python-modules-team