File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -31,14 +31,14 @@ test_immortal_small_ints(PyObject *self, PyObject *Py_UNUSED(ignored))
3131 for (int i = -5 ; i <= 256 ; i ++ ) {
3232 PyObject * obj = PyLong_FromLong (i );
3333 assert (verify_immortality (obj ));
34- int has_int_immortal_bit = _PyLong_IsSmallInt ((PyLongObject * )obj );
35- assert (has_int_immortal_bit );
34+ int is_small_int = _PyLong_IsSmallInt ((PyLongObject * )obj );
35+ assert (is_small_int );
3636 }
3737 for (int i = 257 ; i <= 260 ; i ++ ) {
3838 PyObject * obj = PyLong_FromLong (i );
3939 assert (obj );
40- int has_int_immortal_bit = _PyLong_IsSmallInt ((PyLongObject * )obj );
41- assert (!has_int_immortal_bit );
40+ int is_small_int = _PyLong_IsSmallInt ((PyLongObject * )obj );
41+ assert (!is_small_int );
4242 Py_DECREF (obj );
4343 }
4444 Py_RETURN_NONE ;
You can’t perform that action at this time.
0 commit comments