[pypy-svn] r76824 - pypy/trunk/pypy/rpython/lltypesystem

arigo at codespeak.net arigo at codespeak.net
Wed Sep 1 19:58:44 CEST 2010


Author: arigo
Date: Wed Sep  1 19:58:42 2010
New Revision: 76824

Modified:
   pypy/trunk/pypy/rpython/lltypesystem/llgroup.py
Log:
Add another __slots__, worth 14.5 MB.  I'm stopping here.


Modified: pypy/trunk/pypy/rpython/lltypesystem/llgroup.py
==============================================================================
--- pypy/trunk/pypy/rpython/lltypesystem/llgroup.py	(original)
+++ pypy/trunk/pypy/rpython/lltypesystem/llgroup.py	Wed Sep  1 19:58:42 2010
@@ -99,6 +99,7 @@
     '&~0xFFFF' or with a direct masking like '&0x10000' (resp. on 64-bit
     platform, with '&~0xFFFFFFFF' or '&0x100000000').
     """
+    __slots__ = ['lowpart', 'rest']
     MASK = (1<<HALFSHIFT)-1     # 0xFFFF or 0xFFFFFFFF
 
     def annotation(self):



More information about the Pypy-commit mailing list