mirror of
https://github.com/python/cpython.git
synced 2025-08-20 00:32:12 +00:00
Patch #1552024: add decorator support to unparse.py demo script.
(backport from rev. 52488)
This commit is contained in:
parent
a0a50feea8
commit
a35f8e0538
2 changed files with 11 additions and 0 deletions
|
@ -223,6 +223,9 @@ class Unparser:
|
|||
|
||||
def _FunctionDef(self, t):
|
||||
self.write("\n")
|
||||
for deco in t.decorators:
|
||||
self.fill("@")
|
||||
self.dispatch(deco)
|
||||
self.fill("def "+t.name + "(")
|
||||
self.dispatch(t.args)
|
||||
self.write(")")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue