Author: Armin Rigo <ar...@tunes.org> Branch: Changeset: r75076:6ff7cdf9e09b Date: 2014-12-23 11:46 +0100 http://bitbucket.org/pypy/pypy/changeset/6ff7cdf9e09b/
Log: argh, typo. No generator expression intended. diff --git a/pypy/module/gc/referents.py b/pypy/module/gc/referents.py --- a/pypy/module/gc/referents.py +++ b/pypy/module/gc/referents.py @@ -231,5 +231,5 @@ def get_typeids_list(space): l = rgc.get_typeids_list() - list_w = [space.wrap(l[i] for i in range(len(l)))] + list_w = [space.wrap(l[i]) for i in range(len(l))] return space.newlist(list_w) _______________________________________________ pypy-commit mailing list pypy-commit@python.org https://mail.python.org/mailman/listinfo/pypy-commit