Skip to content

Commit 2cf82f9

Browse files
committed
Try to remove GIL
1 parent 69b734f commit 2cf82f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/julia/libjulia.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ def __init__(self, libjulia_path, bindir, sysimage):
217217
)
218218

219219
with self._pathhack():
220-
self.libjulia = ctypes.PyDLL(libjulia_path, ctypes.RTLD_GLOBAL)
220+
self.libjulia = ctypes.CDLL(libjulia_path, ctypes.RTLD_GLOBAL)
221221

222222
setup_libjulia(self.libjulia)
223223

0 commit comments

Comments
 (0)