diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-10-29 06:15:50 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-10-29 06:15:50 (GMT) |
commit | ac4bdcc80e986bdd5b9d10ab0bce35aabb790a3e (patch) | |
tree | ab7584880b723f516f0ac580241396e850128a63 /Misc | |
parent | f8152c67f52874cd4aa63f1cb3e1216382f98057 (diff) | |
download | cpython-ac4bdcc80e986bdd5b9d10ab0bce35aabb790a3e.zip cpython-ac4bdcc80e986bdd5b9d10ab0bce35aabb790a3e.tar.gz cpython-ac4bdcc80e986bdd5b9d10ab0bce35aabb790a3e.tar.bz2 |
Issue #25503: Fixed inspect.getdoc() for inherited docstrings of properties.
Original patch by John Mark Vandenberg.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS | 3 |
2 files changed, 4 insertions, 0 deletions
@@ -1480,6 +1480,7 @@ Lukas Vacek Ville Vainio Andi Vajda Case Van Horsen +John Mark Vandenberg Kyle VanderBeek Andrew Vant Atul Varma @@ -45,6 +45,9 @@ Core and Builtins Library ------- +- Issue #25503: Fixed inspect.getdoc() for inherited docstrings of properties. + Original patch by John Mark Vandenberg. + - Issue #21827: Fixed textwrap.dedent() for the case when largest common whitespace is a substring of smallest leading whitespace. Based on patch by Robert Li. |