summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-10-29 06:15:50 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-10-29 06:15:50 (GMT)
commitac4bdcc80e986bdd5b9d10ab0bce35aabb790a3e (patch)
treeab7584880b723f516f0ac580241396e850128a63 /Misc
parentf8152c67f52874cd4aa63f1cb3e1216382f98057 (diff)
downloadcpython-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/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index f8fcccf..c7be840 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -1480,6 +1480,7 @@ Lukas Vacek
Ville Vainio
Andi Vajda
Case Van Horsen
+John Mark Vandenberg
Kyle VanderBeek
Andrew Vant
Atul Varma
diff --git a/Misc/NEWS b/Misc/NEWS
index 638964e..be859ed 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.