clade / PyDAQmx

Interface to National Instrument NIDAQmx driver
Other
133 stars 54 forks source link

Fix for pyhon 3 #53

Closed louvervecken closed 5 years ago

louvervecken commented 5 years ago

In python 3 {}.keys() returns a generator and not a list.

clade commented 5 years ago

Currenty PyDAQmx works on python 2. In order to use it with python 3 one should use 2to3 (this is performed automatically with setup.py). There is probably more than one file to change in order for PyDAQmx to work with both versions without using 2to3.