Change by Sergei Izmailov :
--
keywords: +patch
pull_requests: +22103
stage: -> patch review
pull_request: https://github.com/python/cpython/pull/23205
___
Python tracker
<https://bugs.python.org/issu
Sergei Izmailov added the comment:
class Property(property):
'custom docstring'
print(Property(None, None, None, "hello").__doc__)
This snippet is expected to print "hello" as well (at least it's what comment
in cpython implementation suggests)
htt
New submission from Sergei Izmailov :
MRE:
class Property(property):
pass
print(Property(None, None, None, "hello").__doc__)
Expected:
hello
Actual:
None
--
messages: 373571
nosy: Sergei Izmailov
priority: normal
severity: normal
status: open
title: __doc__ attrib