Author: Carl Friedrich Bolz <[email protected]>
Branch:
Changeset: r48205:a6f3750521c0
Date: 2011-10-18 14:46 +0200
http://bitbucket.org/pypy/pypy/changeset/a6f3750521c0/
Log: merge
diff --git a/pypy/jit/metainterp/quasiimmut.py
b/pypy/jit/metainterp/quasiimmut.py
--- a/pypy/jit/metainterp/quasiimmut.py
+++ b/pypy/jit/metainterp/quasiimmut.py
@@ -74,8 +74,8 @@
self.looptokens_wrefs.append(wref_looptoken)
def compress_looptokens_list(self):
- self.looptokens_wref = [wref for wref in self.looptokens_wrefs
- if wref() is not None]
+ self.looptokens_wrefs = [wref for wref in self.looptokens_wrefs
+ if wref() is not None]
# NB. we must keep around the looptoken_wrefs that are
# already invalidated; see below
self.compress_limit = (len(self.looptokens_wrefs) + 15) * 2
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit