diff options
author | Zackery Spytz <zspytz@gmail.com> | 2020-02-05 03:13:00 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-05 03:13:00 (GMT) |
commit | b439a715cb75e2663df32588fd004c7528b9f83b (patch) | |
tree | 480b47d06b8fe4e870841bf74db3963da1ed8cd8 /PC/pyconfig.h | |
parent | cf5b109dbb39bcff1bc5b5d22036866d11de971b (diff) | |
download | cpython-b439a715cb75e2663df32588fd004c7528b9f83b.zip cpython-b439a715cb75e2663df32588fd004c7528b9f83b.tar.gz cpython-b439a715cb75e2663df32588fd004c7528b9f83b.tar.bz2 |
bpo-39553: Delete HAVE_SXS protected code (GH-18356)
https://bugs.python.org/issue39553
Automerge-Triggered-By: @zooba
Diffstat (limited to 'PC/pyconfig.h')
-rw-r--r-- | PC/pyconfig.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/PC/pyconfig.h b/PC/pyconfig.h index 6a437ce..424c5be 100644 --- a/PC/pyconfig.h +++ b/PC/pyconfig.h @@ -195,11 +195,6 @@ typedef int pid_t; #define Py_IS_FINITE(X) _finite(X) #define copysign _copysign -/* Side by Side assemblies supported in VS 2005 and VS 2008 but not 2010*/ -#if _MSC_VER >= 1400 && _MSC_VER < 1600 -#define HAVE_SXS 1 -#endif - /* define some ANSI types that are not defined in earlier Win headers */ #if _MSC_VER >= 1200 /* This file only exists in VC 6.0 or higher */ |