diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2018-11-08 06:48:11 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-08 06:48:11 (GMT) |
commit | a44d34e17908a49d584f86c4f8642a50707b7150 (patch) | |
tree | 56d51dcfd99fa38087b9130b67d25a5c501eac4e /Misc | |
parent | 6843ffe4533e9f2cde036296fd932fef6f059687 (diff) | |
download | cpython-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.rst | 3 |
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. |