[pypy-commit] pypy py3.5-fstring-pep498: regenerate this file

arigo pypy.commits at gmail.com
Tue Jan 24 11:10:58 EST 2017


Author: Armin Rigo <arigo at tunes.org>
Branch: py3.5-fstring-pep498
Changeset: r89744:8bfc9e97b86b
Date: 2017-01-24 17:09 +0100
http://bitbucket.org/pypy/pypy/changeset/8bfc9e97b86b/

Log:	regenerate this file

diff --git a/pypy/interpreter/astcompiler/ast.py b/pypy/interpreter/astcompiler/ast.py
--- a/pypy/interpreter/astcompiler/ast.py
+++ b/pypy/interpreter/astcompiler/ast.py
@@ -2704,7 +2704,9 @@
 
     def mutate_over(self, visitor):
         if self.values:
-            visitor._mutate_sequence(self.values)
+            for i in range(len(self.values)):
+                if self.values[i] is not None:
+                    self.values[i] = self.values[i].mutate_over(visitor)
         return visitor.visit_JoinedStr(self)
 
     def to_object(self, space):


More information about the pypy-commit mailing list