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.




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Reply via email to