[pypy-svn] r51417 - pypy/dist/pypy/rpython/memory/gc

cfbolz at codespeak.net cfbolz at codespeak.net
Tue Feb 12 18:29:10 CET 2008


Author: cfbolz
Date: Tue Feb 12 18:29:08 2008
New Revision: 51417

Modified:
   pypy/dist/pypy/rpython/memory/gc/semispace.py
Log:
add a comment


Modified: pypy/dist/pypy/rpython/memory/gc/semispace.py
==============================================================================
--- pypy/dist/pypy/rpython/memory/gc/semispace.py	(original)
+++ pypy/dist/pypy/rpython/memory/gc/semispace.py	Tue Feb 12 18:29:08 2008
@@ -311,6 +311,7 @@
         # walk over list of objects with finalizers
         # if it is not copied, add it to the list of to-be-called finalizers
         # and copy it, to me make the finalizer runnable
+        # NOTE: the caller is calling scan_copied, so no need to do it here
         new_with_finalizer = self.AddressLinkedList()
         while self.objects_with_finalizers.non_empty():
             obj = self.objects_with_finalizers.pop()



More information about the Pypy-commit mailing list