Skip to content

Commit 9d5b6ba

Browse files
Update Include/internal/pycore_long.h
Co-authored-by: Irit Katriel <[email protected]>
1 parent d528881 commit 9d5b6ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Include/internal/pycore_long.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ PyAPI_FUNC(void) _PyLong_ExactDealloc(PyObject *self);
6565
# error "_PY_NSMALLPOSINTS must be greater than or equal to 257"
6666
#endif
6767

68-
#define _IS_LOAD_SMALL_INT(val) ((val) >= 0 && (val) < 256 && (val) < _PY_NSMALLPOSINTS)
68+
#define _IS_SMALL_INT(val) ((val) >= 0 && (val) < 256 && (val) < _PY_NSMALLPOSINTS)
6969

7070
// Return a reference to the immortal zero singleton.
7171
// The function cannot return NULL.

0 commit comments

Comments
 (0)