Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 249b898

Browse files
committed
Typo fix. Thanks Damien Diederen.
1 parent e02a301 commit 249b898

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Objects/longobject.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ PyLong_FromLong(long ival)
209209
return (PyObject*)v;
210210
}
211211

212-
#if PyLONG_SHIFT==15
212+
#if PyLong_SHIFT==15
213213
/* 2 digits */
214214
if (!(abs_ival >> 2*PyLong_SHIFT)) {
215215
v = _PyLong_New(2);

0 commit comments

Comments
 (0)