Commit 7c65adf6 authored by Miss Islington (bot)'s avatar Miss Islington (bot) Committed by GitHub

closes bpo-38253: Fix typo of Py_SET_ERANGE_IF_OVERFLOW in pyport.h. (GH-16230)

(cherry picked from commit 4346bad3321699d49a45e3446270b57726ab5c8f)
Co-authored-by: default avatarHai Shi <shihai1992@gmail.com>
parent c47c8ba2
......@@ -481,7 +481,7 @@ extern "C" {
} \
} while(0)
/* Py_SET_ERANGE_ON_OVERFLOW(x)
/* Py_SET_ERANGE_IF_OVERFLOW(x)
* An alias of Py_SET_ERRNO_ON_MATH_ERROR for backward-compatibility.
*/
#define Py_SET_ERANGE_IF_OVERFLOW(X) Py_SET_ERRNO_ON_MATH_ERROR(X)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment