commit | 1b2e9444fe9eeaef971d498445ebad7fce27f0b9 | [log] [tgz] |
---|---|---|
author | Mark Dickinson <mdickinson@enthought.com> | Sun May 06 17:27:39 2012 +0100 |
committer | Mark Dickinson <mdickinson@enthought.com> | Sun May 06 17:27:39 2012 +0100 |
tree | fe61be4812ea477a37a8a9b5868c61242479c989 | |
parent | 9ab3fdd8cbd12a11eeef7bd8e088e4a7717e0eb3 [diff] [blame] |
Issue #14965: Fix missing support for starred assignments in Tools/parser/unparse.py.
diff --git a/Tools/parser/unparse.py b/Tools/parser/unparse.py index e96ef54..d9fca97 100644 --- a/Tools/parser/unparse.py +++ b/Tools/parser/unparse.py
@@ -472,6 +472,10 @@ self.dispatch(t.slice) self.write("]") + def _Starred(self, t): + self.write("*") + self.dispatch(t.value) + # slice def _Ellipsis(self, t): self.write("...")