[pypy-commit] pypy gc-del-3: fix

arigo pypy.commits at gmail.com
Wed May 4 12:50:05 EDT 2016


Author: Armin Rigo <arigo at tunes.org>
Branch: gc-del-3
Changeset: r84195:a495ce740059
Date: 2016-05-04 18:50 +0200
http://bitbucket.org/pypy/pypy/changeset/a495ce740059/

Log:	fix

diff --git a/rpython/memory/gc/minimark.py b/rpython/memory/gc/minimark.py
--- a/rpython/memory/gc/minimark.py
+++ b/rpython/memory/gc/minimark.py
@@ -561,8 +561,6 @@
             # Build the object.
             llarena.arena_reserve(result, totalsize)
             obj = result + size_gc_header
-            if is_finalizer_light:
-                self.young_objects_with_light_finalizers.append(obj)
             self.init_gc_object(result, typeid, flags=0)
         #
         # If it is a weakref or has a lightweight destructor, record it


More information about the pypy-commit mailing list