diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2010-06-29 18:38:59 +0000 |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2010-06-29 18:38:59 +0000 |
commit | 578aa56f9aa481cfb2fe5e0342fc20dce139145a (patch) | |
tree | b37117189746c5d8fb83072b12b9aea9bb5cb886 /Demo/parser/unparse.py | |
parent | 927ccd257f69ea96e0de336bbf1d787473ece3e8 (diff) | |
download | cpython-git-578aa56f9aa481cfb2fe5e0342fc20dce139145a.tar.gz |
Fix typo in unparsing of a class definition.
Diffstat (limited to 'Demo/parser/unparse.py')
-rw-r--r-- | Demo/parser/unparse.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Demo/parser/unparse.py b/Demo/parser/unparse.py index 048f8ca432..6e4ef6348e 100644 --- a/Demo/parser/unparse.py +++ b/Demo/parser/unparse.py @@ -215,7 +215,7 @@ class Unparser: if t.kwargs: if comma: self.write(", ") else: comma = True - self.write("*") + self.write("**") self.dispatch(t.kwargs) self.write(")") |