summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2018-11-08 06:48:11 (GMT)
committerGitHub <noreply@github.com>2018-11-08 06:48:11 (GMT)
commita44d34e17908a49d584f86c4f8642a50707b7150 (patch)
tree56d51dcfd99fa38087b9130b67d25a5c501eac4e /Misc
parent6843ffe4533e9f2cde036296fd932fef6f059687 (diff)
downloadcpython-a44d34e17908a49d584f86c4f8642a50707b7150.zip
cpython-a44d34e17908a49d584f86c4f8642a50707b7150.tar.gz
cpython-a44d34e17908a49d584f86c4f8642a50707b7150.tar.bz2
bpo-34966: Improve support of method aliases in pydoc. (GH-9823)
Pydoc now does not duplicate docstrings for aliases of inherited methods.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2018-10-12-18-57-52.bpo-34966.WZeBHO.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-10-12-18-57-52.bpo-34966.WZeBHO.rst b/Misc/NEWS.d/next/Library/2018-10-12-18-57-52.bpo-34966.WZeBHO.rst
new file mode 100644
index 0000000..b861405
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2018-10-12-18-57-52.bpo-34966.WZeBHO.rst
@@ -0,0 +1,3 @@
+:mod:`pydoc` now supports aliases not only to methods defined in
+the end class, but also to inherited methods. The docstring is not
+duplicated for aliases.