Author: Christian Tismer <[email protected]>
Branch: win64_gborg
Changeset: r49128:aeccba4a7567
Date: 2011-11-10 01:15 +0100
http://bitbucket.org/pypy/pypy/changeset/aeccba4a7567/

Log:    typo correction

diff --git a/pypy/rlib/rarithmetic.py b/pypy/rlib/rarithmetic.py
--- a/pypy/rlib/rarithmetic.py
+++ b/pypy/rlib/rarithmetic.py
@@ -144,7 +144,7 @@
     assert not isinstance(r, r_longlong), "ovfcheck not supported on 
r_longlong"
     assert not isinstance(r, r_ulonglong), "ovfcheck not supported on 
r_ulonglong"
     if type(r) is long and not is_valid_int(r):
-        # the type check is needed to make this chek skip symbolics.
+        # the type check is needed to make ovfcheck skip symbolics.
         # this happens in the garbage collector.
         raise OverflowError, "signed integer expression did overflow"
     return r
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to