kwargs["winmode"] = 0 not correct, or? #58
Unanswered
rolfmertig
asked this question in
Q&A
Replies: 1 comment
-
winmode adjusts how the paths are searched for dll's https://docs.python.org/3/library/ctypes.html#ctypes.WinDLL It was only added in 3.8, hence the version check. Setting to 0 should make it the easiest to load dll's. Do you use a full path or relative path for the dll load? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Only if I change the 0 to a 1 in this line:
gfort2py/gfort2py/gfort2py.py
Line 54 in a0aead0
I can get fFort to work on Windows, using a recent Python version.
So what is the rationale to have this limit to python version greater or equal than 3.8 ?
Beta Was this translation helpful? Give feedback.
All reactions