Author: Armin Rigo <[email protected]>
Branch: kill-someobject
Changeset: r58046:501921387b66
Date: 2012-10-12 16:12 +0200
http://bitbucket.org/pypy/pypy/changeset/501921387b66/

Log:    "Hum". A fix that I don't fully understand, but then it's in
        test_refcounting, so well.

diff --git a/pypy/rpython/memory/gctransform/test/test_transform.py 
b/pypy/rpython/memory/gctransform/test/test_transform.py
--- a/pypy/rpython/memory/gctransform/test/test_transform.py
+++ b/pypy/rpython/memory/gctransform/test/test_transform.py
@@ -143,7 +143,7 @@
     etrafo = ExceptionTransformer(t)
     etrafo.transform_completely()
     graphs_borrowed = {}
-    for graph in t.graphs:
+    for graph in t.graphs[:]:
         graphs_borrowed[graph] = transformer.transform_graph(graph)
     if conftest.option.view:
         t.view()
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to