summaryrefslogtreecommitdiffstats
path: root/PC
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2020-11-16 23:42:49 (GMT)
committerGitHub <noreply@github.com>2020-11-16 23:42:49 (GMT)
commit4f54ca07341c656b763c8c71a051f7f86a2a256c (patch)
tree715bc3c7ac9129a642d0275d4fd2c4a1008318ae /PC
parentfa86614078f1f700f350f98486dddf83587ab69e (diff)
downloadcpython-4f54ca07341c656b763c8c71a051f7f86a2a256c.zip
cpython-4f54ca07341c656b763c8c71a051f7f86a2a256c.tar.gz
cpython-4f54ca07341c656b763c8c71a051f7f86a2a256c.tar.bz2
bpo-42120: Remove macro defining copysign to _copysign on Windows (GH-23326)
(cherry picked from commit 9cc9e277254023c0ca08e1a9e379fd89475ca9c2) Co-authored-by: Steve Dower <steve.dower@python.org>
Diffstat (limited to 'PC')
-rw-r--r--PC/pyconfig.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/PC/pyconfig.h b/PC/pyconfig.h
index b6b8d44..4f6846b 100644
--- a/PC/pyconfig.h
+++ b/PC/pyconfig.h
@@ -193,7 +193,6 @@ typedef int pid_t;
#define Py_IS_NAN _isnan
#define Py_IS_INFINITY(X) (!_finite(X) && !_isnan(X))
#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