[pypy-svn] r14790 - pypy/branch/pypy-translation-snapshot/objspace/std

pedronis at codespeak.net pedronis at codespeak.net
Tue Jul 19 19:46:34 CEST 2005


Author: pedronis
Date: Tue Jul 19 19:46:21 2005
New Revision: 14790

Modified:
   pypy/branch/pypy-translation-snapshot/objspace/std/longobject.py
Log:
disable CHECK_DIGITS for annotation/translation



Modified: pypy/branch/pypy-translation-snapshot/objspace/std/longobject.py
==============================================================================
--- pypy/branch/pypy-translation-snapshot/objspace/std/longobject.py	(original)
+++ pypy/branch/pypy-translation-snapshot/objspace/std/longobject.py	Tue Jul 19 19:46:21 2005
@@ -63,7 +63,7 @@
 # False == no checking at all
 # True == check 0 <= value <= MASK
 
-CHECK_DIGITS = True
+CHECK_DIGITS = False
 
 if CHECK_DIGITS:
     class DigitArray(list):



More information about the Pypy-commit mailing list