[pypy-commit] pypy default: Clean-up.

arigo noreply at buildbot.pypy.org
Tue Feb 7 13:58:33 CET 2012


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r52176:7aad58bd9b2b
Date: 2012-02-07 13:58 +0100
http://bitbucket.org/pypy/pypy/changeset/7aad58bd9b2b/

Log:	Clean-up.

diff --git a/pypy/translator/c/gc.py b/pypy/translator/c/gc.py
--- a/pypy/translator/c/gc.py
+++ b/pypy/translator/c/gc.py
@@ -11,7 +11,6 @@
 from pypy.translator.tool.cbuild import ExternalCompilationInfo
 
 class BasicGcPolicy(object):
-    stores_hash_at_the_end = False
 
     def __init__(self, db, thread_enabled=False):
         self.db = db
@@ -308,7 +307,6 @@
 
 class FrameworkGcPolicy(BasicGcPolicy):
     transformerclass = framework.FrameworkGCTransformer
-    stores_hash_at_the_end = True
 
     def struct_setup(self, structdefnode, rtti):
         if rtti is not None and hasattr(rtti._obj, 'destructor_funcptr'):


More information about the pypy-commit mailing list