mirror of
https://github.com/python/cpython.git
synced 2025-07-28 21:55:21 +00:00
Fix typo in unparsing of a class definition.
This commit is contained in:
parent
927ccd257f
commit
578aa56f9a
2 changed files with 3 additions and 1 deletions
|
@ -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(")")
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue