https://hg.python.org/cpython/rev/2d90f4b27743 changeset: 99222:2d90f4b27743 parent: 99220:6ec093f78266 parent: 99221:7789f338447f user: Victor Stinner <victor.stinner at gmail.com> date: Fri Nov 20 08:50:17 2015 +0100 summary: Merge 3.5 (issue #25670) files: Lib/ast.py | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/Lib/ast.py b/Lib/ast.py --- a/Lib/ast.py +++ b/Lib/ast.py @@ -293,7 +293,6 @@ def generic_visit(self, node): for field, old_value in iter_fields(node): - old_value = getattr(node, field, None) if isinstance(old_value, list): new_values = [] for value in old_value: -- Repository URL: https://hg.python.org/cpython