summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-04-27 19:41:00 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2009-04-27 19:41:00 (GMT)
commit249b898ec7839cc022d5d0b7638284663a6edfb7 (patch)
tree1db172d5881d552a0c10dad923f255d015e76e64 /Objects
parente02a3017ca75fceccc7f90a4fa979d24e18d1295 (diff)
downloadcpython-249b898ec7839cc022d5d0b7638284663a6edfb7.zip
cpython-249b898ec7839cc022d5d0b7638284663a6edfb7.tar.gz
cpython-249b898ec7839cc022d5d0b7638284663a6edfb7.tar.bz2
Typo fix. Thanks Damien Diederen.
Diffstat (limited to 'Objects')
-rw-r--r--Objects/longobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/longobject.c b/Objects/longobject.c
index 81af4ea..af8c14a 100644
--- a/Objects/longobject.c
+++ b/Objects/longobject.c
@@ -209,7 +209,7 @@ PyLong_FromLong(long ival)
return (PyObject*)v;
}
-#if PyLONG_SHIFT==15
+#if PyLong_SHIFT==15
/* 2 digits */
if (!(abs_ival >> 2*PyLong_SHIFT)) {
v = _PyLong_New(2);