[issue24941] Add classproperty as builtin class

2015-08-29 Thread Eric Snow
Eric Snow added the comment: I also posted a broader proposal: https://mail.python.org/pipermail/python-ideas/2015-August/035615.html -- ___ Python tracker ___ _

[issue24941] Add classproperty as builtin class

2015-08-29 Thread Eric Snow
Eric Snow added the comment: I've posted a counter-proposal on python-ideas: https://mail.python.org/pipermail/python-ideas/2015-August/035614.html Basically: instead of "classproperty", add a more lenient alternative to classmethod which allows composition. I called it "classresolved". clas

[issue24941] Add classproperty as builtin class

2015-08-26 Thread Erik Bray
Erik Bray added the comment: A read-only classproperty is fairly trivial to implement in pure Python and has been done. A good reason to have a classproperty implementation in CPython would be to support settable/deleteable classproperties. The problem is that can't be done with the descript

[issue24941] Add classproperty as builtin class

2015-08-26 Thread Ryan Hiebert
Changes by Ryan Hiebert : -- nosy: +ryanhiebert ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.py

[issue24941] Add classproperty as builtin class

2015-08-26 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- stage: needs patch -> test needed title: classproperty -> Add classproperty as builtin class ___ Python tracker ___ ___