From: Georg Brandl Date: Fri, 27 Oct 2006 20:39:47 +0000 (+0000) Subject: Patch #1552024: add decorator support to unparse.py demo script. X-Git-Tag: v2.5.1c1~291 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a35f8e05382aa53b98f423b918ae5f4bd030923a;p=python Patch #1552024: add decorator support to unparse.py demo script. (backport from rev. 52488) --- diff --git a/Demo/parser/unparse.py b/Demo/parser/unparse.py index 510cdb07ba..f4dd90c95e 100644 --- a/Demo/parser/unparse.py +++ b/Demo/parser/unparse.py @@ -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(")") diff --git a/Misc/NEWS b/Misc/NEWS index 9ad45fc6f1..4150444c7e 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -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 -----