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: Backport of PEP 3129 "class decorators"
Type: enhancement Stage:
Components: Interpreter Core Versions: Python 2.6
process
Status: closed Resolution: accepted
Dependencies: Superseder:
Assigned To: Nosy List: christian.heimes, georg.brandl, rhettinger
Priority: normal Keywords: patch

Created on 2008-01-08 03:44 by christian.heimes, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
trunk_pep3129_classdec.patch christian.heimes, 2008-01-08 03:44
classdec_2.diff georg.brandl, 2008-02-23 14:38
Messages (3)
msg59520 - (view) Author: Christian Heimes (christian.heimes) * (Python committer) Date: 2008-01-08 03:44
The patch backports the class decorator syntax to 2.6. All tests except
two are passing. I'm not sure why the inspect test fails and I don't
know how to fix the ast test.
msg62734 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2008-02-23 14:38
Attaching new diff that fixes these issues.
msg62736 - (view) Author: Christian Heimes (christian.heimes) * (Python committer) Date: 2008-02-23 15:02
Applied in r60978
History
Date User Action Args
2022-04-11 14:56:29adminsetgithub: 46099
2008-02-23 15:02:23christian.heimessetstatus: open -> closed
resolution: accepted
messages: + msg62736
2008-02-23 14:38:53georg.brandlsetfiles: + classdec_2.diff
nosy: + georg.brandl
messages: + msg62734
2008-01-08 03:45:26christian.heimessetkeywords: + patch
nosy: + rhettinger
2008-01-08 03:44:27christian.heimescreate