We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d528881 commit 9d5b6baCopy full SHA for 9d5b6ba
Include/internal/pycore_long.h
@@ -65,7 +65,7 @@ PyAPI_FUNC(void) _PyLong_ExactDealloc(PyObject *self);
65
# error "_PY_NSMALLPOSINTS must be greater than or equal to 257"
66
#endif
67
68
-#define _IS_LOAD_SMALL_INT(val) ((val) >= 0 && (val) < 256 && (val) < _PY_NSMALLPOSINTS)
+#define _IS_SMALL_INT(val) ((val) >= 0 && (val) < 256 && (val) < _PY_NSMALLPOSINTS)
69
70
// Return a reference to the immortal zero singleton.
71
// The function cannot return NULL.
0 commit comments