[pypy-svn] r75689 - pypy/branch/fast-forward/pypy/objspace/std

benjamin at codespeak.net benjamin at codespeak.net
Wed Jun 30 17:54:27 CEST 2010


Author: benjamin
Date: Wed Jun 30 17:54:25 2010
New Revision: 75689

Modified:
   pypy/branch/fast-forward/pypy/objspace/std/typeobject.py
Log:
use same flag as cpython

Modified: pypy/branch/fast-forward/pypy/objspace/std/typeobject.py
==============================================================================
--- pypy/branch/fast-forward/pypy/objspace/std/typeobject.py	(original)
+++ pypy/branch/fast-forward/pypy/objspace/std/typeobject.py	Wed Jun 30 17:54:25 2010
@@ -15,7 +15,7 @@
 
 from copy_reg import _HEAPTYPE
 _CPYTYPE = 1 # used for non-heap types defined in C
-_ABSTRACT = 1 << 2
+_ABSTRACT = 1 << 20
 
 # from compiler/misc.py
 



More information about the Pypy-commit mailing list