[Python-checkins] r72042 - python/branches/py3k/Objects/longobject.c

mark.dickinson python-checkins at python.org
Mon Apr 27 21:41:00 CEST 2009


Author: mark.dickinson
Date: Mon Apr 27 21:41:00 2009
New Revision: 72042

Log:
Typo fix.  Thanks Damien Diederen.


Modified:
   python/branches/py3k/Objects/longobject.c

Modified: python/branches/py3k/Objects/longobject.c
==============================================================================
--- python/branches/py3k/Objects/longobject.c	(original)
+++ python/branches/py3k/Objects/longobject.c	Mon Apr 27 21:41:00 2009
@@ -209,7 +209,7 @@
 		return (PyObject*)v;
 	}
 
-#if PyLONG_SHIFT==15
+#if PyLong_SHIFT==15
 	/* 2 digits */
 	if (!(abs_ival >> 2*PyLong_SHIFT)) {
 		v = _PyLong_New(2);


More information about the Python-checkins mailing list