Skip to content
Snippets Groups Projects
Commit a494b54b6ed3 authored by Shun-ichi GOTO's avatar Shun-ichi GOTO
Browse files

win32: msvcr71.dll should be used for python 2.4 and 2.5

Following is list of C-Runtime for versions of CPython on windows:
 - python 2.4.5 => MSVCR71.dll
 - python 2.5.4 => MSVCR71.dll
 - python 2.6.6 => MSVCR90.dll
 - python 2.7   => MSVCR90.dll
 - python 3.1.2 => MSVCR90.dll
parent 2ef2d3a5cd2d
No related branches found
No related tags found
No related merge requests found
......@@ -73,7 +73,7 @@
# find_msvcrt was introduced in Python 2.6
return ctypes.util.find_msvcrt()
except AttributeError:
return 'msvcr80.dll' # CPython 2.5
return 'msvcr71.dll' # CPython 2.5 and 2.4
_crt = ctypes.PyDLL(_crtname())
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment