aboutsummaryrefslogtreecommitdiff
path: root/PC
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@python.org>2020-11-16 23:22:42 +0000
committerGitHub <noreply@github.com>2020-11-16 23:22:42 +0000
commit9cc9e277254023c0ca08e1a9e379fd89475ca9c2 (patch)
tree1b1a39f3587b991809aa42349950998f63b58ae6 /PC
parentbpo-42316: Allow unparenthesized walrus operator in indexes (GH-23317) (diff)
downloadcpython-9cc9e277254023c0ca08e1a9e379fd89475ca9c2.tar.gz
cpython-9cc9e277254023c0ca08e1a9e379fd89475ca9c2.tar.bz2
cpython-9cc9e277254023c0ca08e1a9e379fd89475ca9c2.zip
bpo-42120: Remove macro defining copysign to _copysign on Windows (GH-23326)
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 b29f63c35bc..592b487adcb 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
/* define some ANSI types that are not defined in earlier Win headers */
#if _MSC_VER >= 1200