[pypy-svn] pypy default: Fix one test in cpyext

amauryfa commits-noreply at bitbucket.org
Tue Mar 15 19:20:49 CET 2011


Author: Amaury Forgeot d'Arc <amauryfa at gmail.com>
Branch: 
Changeset: r42674:0fd9a5d918f4
Date: 2011-03-15 18:42 +0100
http://bitbucket.org/pypy/pypy/changeset/0fd9a5d918f4/

Log:	Fix one test in cpyext

diff --git a/pypy/module/cpyext/typeobject.py b/pypy/module/cpyext/typeobject.py
--- a/pypy/module/cpyext/typeobject.py
+++ b/pypy/module/cpyext/typeobject.py
@@ -288,6 +288,7 @@
         W_TypeObject.__init__(self, space, extension_name,
             bases_w or [space.w_object], dict_w)
         self.flag_cpytype = True
+        self.flag_heaptype = False
 
 @bootstrap_function
 def init_typeobject(space):


More information about the Pypy-commit mailing list