mirror of https://github.com/python/cpython.git
[3.9] bpo-42120: Remove macro defining copysign to _copysign on Windows (GH-23326) (GH-23331)
(cherry picked from commit 9cc9e27725
)
Co-authored-by: Steve Dower <steve.dower@python.org>
This commit is contained in:
parent
2b800ef809
commit
2c38e49dba
|
@ -0,0 +1 @@
|
|||
Remove macro definition of ``copysign`` (to ``_copysign``) in headers.
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue