We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
nidaqmx-python/nidaqmx/_lib.py
Line 242 in 0058a02
Won't this line return the wrong handle type for, say, version 7.9?
I believe you want: c_uint if (majorversion < 8 or (majorversion == 8 and minorversion <= 8)) else c_void_p
c_uint if (majorversion < 8 or (majorversion == 8 and minorversion <= 8)) else c_void_p
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
nidaqmx-python/nidaqmx/_lib.py
Line 242 in 0058a02
Won't this line return the wrong handle type for, say, version 7.9?
I believe you want:
c_uint if (majorversion < 8 or (majorversion == 8 and minorversion <= 8)) else c_void_p
The text was updated successfully, but these errors were encountered: