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: abc.abstractproperty does not copy docstring
Type: behavior Stage:
Components: Library (Lib) Versions: Python 3.1, Python 3.2, Python 2.7, Python 2.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: daniel.urban, georg.brandl, rescrv
Priority: normal Keywords:

Created on 2010-04-23 13:33 by rescrv, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
python.abc.abstractproperty.bug rescrv, 2010-04-23 13:33 Interactive interpreter session
Messages (3)
msg104012 - (view) Author: Robert Escriva (rescrv) Date: 2010-04-23 13:33
Attached file shows interpreter session where the bug manifests.

It was my expectation that abc.abstractproperty would copy the docstring just like property.  Instead, the docstring is the one for abc.abstractproperty itself.
msg111368 - (view) Author: Daniel Urban (daniel.urban) * (Python triager) Date: 2010-07-23 17:56
I tried, and wasn't able to reproduce with py3k (r83091), 3.1.2, release27-maint (r83111), release26-maint (r83111).
msg199934 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2013-10-14 17:41
Confirmed; this appears fixed.
History
Date User Action Args
2022-04-11 14:57:00adminsetgithub: 52753
2013-10-14 17:41:59georg.brandlsetstatus: open -> closed

nosy: + georg.brandl
messages: + msg199934

resolution: fixed
2010-07-23 17:56:15daniel.urbansetnosy: + daniel.urban
messages: + msg111368
2010-04-23 13:35:20pitrousetpriority: normal
versions: + Python 3.1, Python 2.7, Python 3.2
2010-04-23 13:33:07rescrvcreate