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
Using the internal simulator in the toolbox on win64, it bombs on line 256 of control_interface.py
control_interface.py
dlclose = lambda handle: 0 if _dlclose(handle) else 1
fixed following this: https://bugs.python.org/issue30286
ctypes.windll.kernel32.FreeLibrary.argtypes = [wintypes.HMODULE] #RRD added and importing wintypes in the ctypes import.
ctypes.windll.kernel32.FreeLibrary.argtypes = [wintypes.HMODULE] #RRD added
check my fork if useful, and can close this. Thx.
The text was updated successfully, but these errors were encountered:
Thanks for the update, @rdamiani. Can you provide a link to your suggested fix?
Sorry, something went wrong.
rdamiani@e59b7ac hopefully this works
No branches or pull requests
Using the internal simulator in the toolbox on win64, it bombs on line 256 of
control_interface.py
dlclose = lambda handle: 0 if _dlclose(handle) else 1
fixed following this: https://bugs.python.org/issue30286
ctypes.windll.kernel32.FreeLibrary.argtypes = [wintypes.HMODULE] #RRD added
and importing wintypes in the ctypes import.
check my fork if useful, and can close this.
Thx.
The text was updated successfully, but these errors were encountered: