Author: Armin Rigo <ar...@tunes.org>
Branch: 
Changeset: r44682:a98d7b4c1f16
Date: 2011-06-04 06:46 +0200
http://bitbucket.org/pypy/pypy/changeset/a98d7b4c1f16/

Log:    Typo.

diff --git a/pypy/module/cpyext/intobject.py b/pypy/module/cpyext/intobject.py
--- a/pypy/module/cpyext/intobject.py
+++ b/pypy/module/cpyext/intobject.py
@@ -78,7 +78,7 @@
     """Create a new integer object with a value of ival. If the value exceeds
     LONG_MAX, a long integer object is returned.
     """
-    if intval < LONG_TEST:
+    if ival < LONG_TEST:
         return space.wrap(intmask(ival))
     return space.wrap(ival)
 
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to