summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrigitta Sipocz <bsipocz@gmail.com>2020-07-12 13:54:07 -0700
committerBrigitta Sipőcz <bsipocz@gmail.com>2022-05-17 20:26:22 -0700
commit70ecc0f840e4519ea8c9944abcb5e9e2c73b6178 (patch)
tree79cf59bece34f8d5395d97713698b8af49084a89
parentc045defe446a36f44201e93235e9eb206e458cf6 (diff)
downloadnumpy-70ecc0f840e4519ea8c9944abcb5e9e2c73b6178.tar.gz
Questionable removal of python <3.6 related things
-rw-r--r--numpy/distutils/mingw32ccompiler.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/numpy/distutils/mingw32ccompiler.py b/numpy/distutils/mingw32ccompiler.py
index d48e27966..3349a56e8 100644
--- a/numpy/distutils/mingw32ccompiler.py
+++ b/numpy/distutils/mingw32ccompiler.py
@@ -37,9 +37,6 @@ def get_msvcr_replacement():
msvcr = msvc_runtime_library()
return [] if msvcr is None else [msvcr]
-# monkey-patch cygwinccompiler with our updated version from misc_util
-# to avoid getting an exception raised on Python 3.5
-distutils.cygwinccompiler.get_msvcr = get_msvcr_replacement
# Useful to generate table of symbols from a dll
_START = re.compile(r'\[Ordinal/Name Pointer\] Table')