Patch #1552024: add decorator support to unparse.py demo script.

(backport from rev. 52488)
This commit is contained in:
Georg Brandl 2006-10-27 20:39:47 +00:00
parent a0a50feea8
commit a35f8e0538
2 changed files with 11 additions and 0 deletions

View file

@ -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(")")