8000 bpo-42120: Remove macro defining copysign to _copysign on Windows (GH… · python/cpython@4f54ca0 · GitHub
[go: up one dir, main page]

Skip to content

Commit 4f54ca0

Browse files
bpo-42120: Remove macro defining copysign to _copysign on Windows (GH-23326)
(cherry picked from commit 9cc9e27) Co-authored-by: Steve Dower <steve.dower@python.org>
1 parent fa86614 commit 4f54ca0

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
7AE9 Remove macro definition of ``copysign`` (to ``_copysign``) in headers.

PC/pyconfig.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,6 @@ typedef int pid_t;
193193
#define Py_IS_NAN _isnan
194194
#define Py_IS_INFINITY(X) (!_finite(X) && !_isnan(X))
195195
#define Py_IS_FINITE(X) _finite(X)
196-
#define copysign _copysign
197196

198197
/* Side by Side assemblies supported in VS 2005 and VS 2008 but not 2010*/
199198
#if _MSC_VER >= 1400 && _MSC_VER < 1600

0 commit comments

Comments
 (0)
0