Author: Armin Rigo <ar...@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): _______________________________________________ pypy-commit mailing list pypy-commit@python.org https://mail.python.org/mailman/listinfo/pypy-commit