[pypy-svn] r62699 - pypy/trunk/pypy/objspace/std

arigo at codespeak.net arigo at codespeak.net
Sat Mar 7 14:35:22 CET 2009


Author: arigo
Date: Sat Mar  7 14:35:22 2009
New Revision: 62699

Added:
   pypy/trunk/pypy/objspace/std/intobject.py.merge.tmp
      - copied, changed from r62697, pypy/trunk/pypy/objspace/std/intobject.py
Log:
merging of svn+ssh://codespeak.net/svn/pypy/branch/pyjitpl5/pypy/objspace/std/intobject.py
revisions 61705 to 62697:

    ------------------------------------------------------------------------
    r62545 | fijal | 2009-03-04 20:01:49 +0100 (Wed, 04 Mar 2009) | 3 lines
    
    reintroduce _immutable_ hint on Int and Bool. I think it was gone
    because previous JIT was unable to cope with it
    
    ------------------------------------------------------------------------
    r61713 | fijal | 2009-02-11 12:33:01 +0100 (Wed, 11 Feb 2009) | 4 lines
    
    (arigo, fijal)
    Create a new branch for importing pyjitpl5 into trunk (and pieces from
    pypy-oo-jit)
    
    ------------------------------------------------------------------------


Copied: pypy/trunk/pypy/objspace/std/intobject.py.merge.tmp (from r62697, pypy/trunk/pypy/objspace/std/intobject.py)
==============================================================================
--- pypy/trunk/pypy/objspace/std/intobject.py	(original)
+++ pypy/trunk/pypy/objspace/std/intobject.py.merge.tmp	Sat Mar  7 14:35:22 2009
@@ -13,6 +13,9 @@
 
 class W_IntObject(W_Object):
     __slots__ = 'intval'
+
+    _immutable_ = True
+    
     from pypy.objspace.std.inttype import int_typedef as typedef
     
     def __init__(w_self, intval):



More information about the Pypy-commit mailing list