This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Update compiler module to handle class decorators
Type: behavior Stage:
Components: Library (Lib) Versions: Python 2.6
process
Status: closed Resolution: accepted
Dependencies: Superseder:
Assigned To: jhylton Nosy List: facundobatista, jhylton, therve
Priority: critical Keywords: patch

Created on 2008-02-24 16:23 by therve, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
compiler.diff therve, 2008-02-24 16:23
Messages (2)
msg62915 - (view) Author: Thomas Herve (therve) * Date: 2008-02-24 16:23
The attached patch (tries to?) updates compiler to handle class
decorators, and also to handle the new way decorated function are
handled. I had a weird bug because it seems that ast.py was modified at
hand last time (r51330).

This fixes the recent failures in the buildbot slaves.

Please review!
msg62990 - (view) Author: Facundo Batista (facundobatista) * (Python committer) Date: 2008-02-25 18:06
Applied in r61067.

Thank you!
History
Date User Action Args
2022-04-11 14:56:31adminsetgithub: 46430
2008-02-25 18:06:26facundobatistasetstatus: open -> closed
nosy: + facundobatista
resolution: accepted
messages: + msg62990
2008-02-24 18:10:30christian.heimessetpriority: critical
assignee: jhylton
type: behavior
nosy: + jhylton
2008-02-24 16:23:38thervecreate