Author: Armin Rigo <[email protected]>
Branch: remove-globals-in-jit
Changeset: r59723:e93f864eda21
Date: 2013-01-05 14:18 +0100
http://bitbucket.org/pypy/pypy/changeset/e93f864eda21/

Log:    Fix for test_free_object

diff --git a/pypy/jit/backend/llgraph/runner.py 
b/pypy/jit/backend/llgraph/runner.py
--- a/pypy/jit/backend/llgraph/runner.py
+++ b/pypy/jit/backend/llgraph/runner.py
@@ -28,7 +28,7 @@
             try:
                 newbox = _cache[box]
             except KeyError:
-                newbox = _cache[box] = box.clonebox()
+                newbox = _cache[box] = box.__class__()
             return newbox
         #
         self.inputargs = map(mapping, inputargs)
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to