]> granicus.if.org Git - python/commitdiff
Typo fix. Thanks Damien Diederen.
authorMark Dickinson <dickinsm@gmail.com>
Mon, 27 Apr 2009 19:41:00 +0000 (19:41 +0000)
committerMark Dickinson <dickinsm@gmail.com>
Mon, 27 Apr 2009 19:41:00 +0000 (19:41 +0000)
Objects/longobject.c

index 81af4ea751bc4c9a6cd5ae04c6bef8960711dd93..af8c14a13457b1e1b5d1cf0cd622fd7bf514bcaa 100644 (file)
@@ -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);