[pypy-commit] pypy py3.3: fix translation

pjenvey noreply at buildbot.pypy.org
Mon Aug 4 06:48:36 CEST 2014


Author: Philip Jenvey <pjenvey at underboss.org>
Branch: py3.3
Changeset: r72689:a4092f8a43f8
Date: 2014-08-03 21:48 -0700
http://bitbucket.org/pypy/pypy/changeset/a4092f8a43f8/

Log:	fix translation

diff --git a/pypy/interpreter/pytraceback.py b/pypy/interpreter/pytraceback.py
--- a/pypy/interpreter/pytraceback.py
+++ b/pypy/interpreter/pytraceback.py
@@ -52,7 +52,7 @@
 
     def descr__dir__(self, space):
         return space.newlist([space.wrap(n) for n in
-            ('tb_frame', 'tb_next', 'tb_lasti', 'tb_lineno')])
+            ['tb_frame', 'tb_next', 'tb_lasti', 'tb_lineno']])
 
 
 def record_application_traceback(space, operror, frame, last_instruction):


More information about the pypy-commit mailing list