Author: Brian Kearns <[email protected]>
Branch: py3k
Changeset: r61980:a5aeb453db1c
Date: 2013-03-03 19:46 -0500
http://bitbucket.org/pypy/pypy/changeset/a5aeb453db1c/
Log: merge default
diff --git a/pypy/interpreter/app_main.py b/pypy/interpreter/app_main.py
--- a/pypy/interpreter/app_main.py
+++ b/pypy/interpreter/app_main.py
@@ -117,8 +117,7 @@
except AttributeError:
print('no translation information found', file=sys.stderr)
else:
- optitems = list(options.items())
- optitems.sort()
+ optitems = sorted(options.items())
current = []
for key, value in optitems:
group = key.split('.')
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit