[pypy-svn] r14956 - in pypy/branch/pypy-translation-snapshot: interpreter module objspace objspace/flow objspace/std

pedronis at codespeak.net pedronis at codespeak.net
Sat Jul 23 02:52:49 CEST 2005


Author: pedronis
Date: Sat Jul 23 02:52:47 2005
New Revision: 14956

Added:
   pypy/branch/pypy-translation-snapshot/interpreter/
      - copied from r14951, pypy/dist/pypy/interpreter/
   pypy/branch/pypy-translation-snapshot/interpreter/typedef.py
      - copied unchanged from r14953, pypy/dist/pypy/interpreter/typedef.py
   pypy/branch/pypy-translation-snapshot/module/
      - copied from r14951, pypy/dist/pypy/module/
   pypy/branch/pypy-translation-snapshot/objspace/
      - copied from r14951, pypy/dist/pypy/objspace/
   pypy/branch/pypy-translation-snapshot/objspace/std/longtype.py
      - copied unchanged from r14952, pypy/dist/pypy/objspace/std/longtype.py
   pypy/branch/pypy-translation-snapshot/objspace/std/objspace.py
      - copied unchanged from r14952, pypy/dist/pypy/objspace/std/objspace.py
   pypy/branch/pypy-translation-snapshot/objspace/std/strutil.py
      - copied unchanged from r14952, pypy/dist/pypy/objspace/std/strutil.py
   pypy/branch/pypy-translation-snapshot/objspace/std/typeobject.py
      - copied unchanged from r14953, pypy/dist/pypy/objspace/std/typeobject.py
Removed:
   pypy/branch/pypy-translation-snapshot/objspace/flow/
Modified:
   pypy/branch/pypy-translation-snapshot/objspace/std/longobject.py
Log:
new translation snapshot from the trunk



Modified: pypy/branch/pypy-translation-snapshot/objspace/std/longobject.py
==============================================================================
--- pypy/dist/pypy/objspace/std/longobject.py	(original)
+++ pypy/branch/pypy-translation-snapshot/objspace/std/longobject.py	Sat Jul 23 02:52:47 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