mirror of
https://github.com/python/cpython.git
synced 2025-08-05 01:18:26 +00:00

Remove fallbacks for missing round(), copysign() and hypot() in Python/pymath.c. Python now requires these functions to build. These fallbacks were needed on Visual Studio 2012 and older. They are no longer needed since Visual Stuido 2013. Python is now built with Visual Studio 2017 or newer since Python 3.6.
4 lines
204 B
ReStructuredText
4 lines
204 B
ReStructuredText
Building Python now requires a C99 ``<math.h>`` header file providing
|
|
the following functions: ``copysign()``, ``hypot()``, ``isfinite()``,
|
|
``isinf()``, ``isnan()``, ``round()``.
|
|
Patch by Victor Stinner.
|