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 6161daf commit 73b91b7Copy full SHA for 73b91b7
1 file changed
Lib/ctypes/__init__.py
@@ -553,8 +553,6 @@ def LoadLibrary(self, name):
553
# These are Unix-like platforms which use a dynamically-linked libpython.
554
pythonapi = PyDLL(_sysconfig.get_config_var("LDLIBRARY"))
555
elif _sys.platform == "cygwin":
556
- # These platforms must load the DLL file from DLLLIBRARY
557
- # and not the import library provided by LDLIBRARY.
558
pythonapi = PyDLL(_sysconfig.get_config_var("DLLLIBRARY"))
559
else:
560
pythonapi = PyDLL(None)
0 commit comments