[pypy-commit] pypy py3k: +target

pjenvey noreply at buildbot.pypy.org
Tue Mar 5 03:32:53 CET 2013


Author: Philip Jenvey <pjenvey at underboss.org>
Branch: py3k
Changeset: r62041:afa1b1b0f238
Date: 2013-03-04 18:32 -0800
http://bitbucket.org/pypy/pypy/changeset/afa1b1b0f238/

Log:	+target

diff --git a/pypy/interpreter/astcompiler/codegen.py b/pypy/interpreter/astcompiler/codegen.py
--- a/pypy/interpreter/astcompiler/codegen.py
+++ b/pypy/interpreter/astcompiler/codegen.py
@@ -964,7 +964,7 @@
         if star.ctx != ast.Store:
             self.error("can use starred expression only as assignment target",
                        star)
-        self.error("starred assignment must be in list or tuple", star)
+        self.error("starred assignment target must be in a list or tuple", star)
 
     def visit_Tuple(self, tup):
         self.update_position(tup.lineno)


More information about the pypy-commit mailing list