Author: Armin Rigo <ar...@tunes.org> Branch: Changeset: r48203:668adc4d1bc6 Date: 2011-10-18 14:43 +0200 http://bitbucket.org/pypy/pypy/changeset/668adc4d1bc6/
Log: Waaaaaaa. Thanks gedd. 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 pypy-commit@python.org http://mail.python.org/mailman/listinfo/pypy-commit