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

View File

@ -57,6 +57,7 @@ Core and builtins
- fixed a bug with bsddb.DB.stat: the flags and txn keyword arguments
were transposed.
Extension Modules
-----------------
@ -83,6 +84,7 @@ Extension Modules
- Make regex engine raise MemoryError if allocating memory fails.
Library
-------
@ -124,6 +126,12 @@ Library
the close_fds arg to subprocess.Popen is not supported).
Tools/Demos
-----------
- Patch #1552024: add decorator support to unparse.py demo script.
Tests
-----