[pypy-commit] pypy win64_gborg: typo correction

ctismer noreply at buildbot.pypy.org
Thu Nov 10 13:06:57 CET 2011


Author: Christian Tismer <tismer at stackless.com>
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


More information about the pypy-commit mailing list