Message264916
With the patch class properties work:
>>> class A:
... @classmethod
... @property
... def __doc__(cls):
... return 'A doc for %r' % cls.__name__
...
>>> A.__doc__
"A doc for 'A'"
This is worth to be explicitly documented. |
|
Date |
User |
Action |
Args |
2016-05-05 19:28:39 | serhiy.storchaka | set | recipients:
+ serhiy.storchaka, gvanrossum, rhettinger, pitrou, grahamd, ionelmc, daniel.urban, berker.peksag |
2016-05-05 19:28:39 | serhiy.storchaka | set | messageid: <1462476519.34.0.981097624863.issue19072@psf.upfronthosting.co.za> |
2016-05-05 19:28:39 | serhiy.storchaka | link | issue19072 messages |
2016-05-05 19:28:39 | serhiy.storchaka | create | |
|