We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5038d74 commit cf625f9Copy full SHA for cf625f9
source/ports/py_port/metacall/module_win32.py
@@ -67,6 +67,8 @@ def get_loaded_module(modules, module_name):
67
68
for name in library_names:
69
runtime_module_handle = get_loaded_module(modules, os.path.join(os.path.sep, base_path, name + '.dll'))
70
+ if runtime_module_handle is None:
71
+ continue
72
runtime_module = ctypes.CDLL('', handle = runtime_module_handle) # cdecl calling convention
73
74
if runtime_module != None:
0 commit comments