Package native :: Package usb
[hide private]
[frames] | no frames]

Source Code for Package native.usb

 1  ### BITPIM 
 2  ### 
 3  ### Copyright (C) 2003-2004 Roger Binns <rogerb@rogerbinns.com> 
 4  ### 
 5  ### This software is under the same license as libusb 
 6  ### 
 7  ### $Id: styles.xy,v 1.4 2003/12/07 06:23:44 rogerb Exp$ 
 8   
 9  # Drop libusb support for Windows 
10  import sys 
11  if sys.platform=='win32': 
12      raise ImportError("libusb not supported on win32") 
13   
14  # Keep python happy that this is a module 
15  # bring everything into ournamespace 
16  from  usb import * 
17   
18  # if this is unavailable, the above would have failed anyway 
19  import libusb 
20