[pypy-commit] pypy default: merge heads

arigo noreply at buildbot.pypy.org
Sun Aug 14 07:08:23 CEST 2011


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r46492:63677c9a1a68
Date: 2011-08-14 07:11 +0200
http://bitbucket.org/pypy/pypy/changeset/63677c9a1a68/

Log:	merge heads

diff --git a/pypy/module/posix/interp_posix.py b/pypy/module/posix/interp_posix.py
--- a/pypy/module/posix/interp_posix.py
+++ b/pypy/module/posix/interp_posix.py
@@ -473,7 +473,7 @@
         FIELDS = PORTABLE_STAT_FIELDS
     else:
         FIELDS = STAT_FIELDS    # also when not translating at all
-    return space.newlist([space.wrap(name) for name, _ in FIELDS])
+    return space.newlist([space.wrap(name) for _, (name, _) in FIELDS])
 
 
 class State:


More information about the pypy-commit mailing list