diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-11-17 07:50:43 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-17 07:50:43 (GMT) |
commit | 2c38e49dba88a39679b2182ca3f5f478d3a3f647 (patch) | |
tree | 41987649abeef439ddc6445b1eee79428c420641 /PC | |
parent | 2b800ef809eefbc96a536e4b43a8285f2353f64d (diff) | |
download | cpython-2c38e49dba88a39679b2182ca3f5f478d3a3f647.zip cpython-2c38e49dba88a39679b2182ca3f5f478d3a3f647.tar.gz cpython-2c38e49dba88a39679b2182ca3f5f478d3a3f647.tar.bz2 |
[3.9] bpo-42120: Remove macro defining copysign to _copysign on Windows (GH-23326) (GH-23331)
(cherry picked from commit 9cc9e277254023c0ca08e1a9e379fd89475ca9c2)
Co-authored-by: Steve Dower <steve.dower@python.org>
Diffstat (limited to 'PC')
-rw-r--r-- | PC/pyconfig.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/PC/pyconfig.h b/PC/pyconfig.h index 02216b5..d7d3cf0 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 |