--- C:\Projects\pa7A\PythonParser\Python-2.5c1\Demo\parser\unparse.py Mon Apr 10 20:28:40 2006 UTC +++ C:\Projects\pa7A\PythonParser\Python-2.5c1\Demo\parser\unparse2.py Mon Sep 4 14:46:29 2006 UTC @@ -223,6 +223,9 @@ def _FunctionDef(self, t): self.write("\n") + for d in t.decorators: + self.fill("@") + self.dispatch(d) self.fill("def "+t.name + "(") self.dispatch(t.args) self.write(")")