From a1907f05649a0ebd4a5e583dab762c8df91c86e7 Mon Sep 17 00:00:00 2001 From: shi hai Date: Tue, 17 Sep 2019 19:57:34 +0800 Subject: [PATCH] Fix typo of Py_SET_ERANGE_IF_OVERFLOW in pyport.h --- Include/pyport.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Include/pyport.h b/Include/pyport.h index 19415001c5b0873..51967d186672c08 100644 --- a/Include/pyport.h +++ b/Include/pyport.h @@ -338,7 +338,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)