This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Add docstrings for typing.SupportsXXX classes
Type: Stage: resolved
Components: Library (Lib) Versions: Python 3.9, Python 3.8, Python 3.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: gvanrossum, levkivskyi, miss-islington, serhiy.storchaka
Priority: normal Keywords: patch

Created on 2019-10-08 08:59 by serhiy.storchaka, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 16644 merged serhiy.storchaka, 2019-10-08 09:01
PR 16656 merged miss-islington, 2019-10-08 13:54
PR 16673 merged serhiy.storchaka, 2019-10-09 09:02
Messages (4)
msg354179 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2019-10-08 08:59
typing.SupportsXXX classes do not have docstrings and help() shows the docstring of the parent class instead, which is wrong ("Base class for protocol classes...").
msg354204 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2019-10-08 13:30
New changeset 8252c52e57283515ace5d4251584255dc5c60eb5 by Serhiy Storchaka in branch 'master':
bpo-38407: Add docstrings for typing.SupportsXXX classes. (GH-16644)
https://github.com/python/cpython/commit/8252c52e57283515ace5d4251584255dc5c60eb5
msg354212 - (view) Author: miss-islington (miss-islington) Date: 2019-10-08 14:15
New changeset 7162440a7247f77d22cd937143f358fd5ac85af4 by Miss Islington (bot) in branch '3.8':
bpo-38407: Add docstrings for typing.SupportsXXX classes. (GH-16644)
https://github.com/python/cpython/commit/7162440a7247f77d22cd937143f358fd5ac85af4
msg354261 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2019-10-09 09:57
New changeset 0b354fc2bfe1a4624551907df396ed36ea8bf4ca by Serhiy Storchaka in branch '3.7':
[3.7] bpo-38407: Add docstrings for typing.SupportsXXX classes. (GH-16644). (GH-16673)
https://github.com/python/cpython/commit/0b354fc2bfe1a4624551907df396ed36ea8bf4ca
History
Date User Action Args
2022-04-11 14:59:21adminsetgithub: 82588
2019-10-09 09:58:31serhiy.storchakasetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2019-10-09 09:57:18serhiy.storchakasetmessages: + msg354261
2019-10-09 09:02:35serhiy.storchakasetpull_requests: + pull_request16254
2019-10-08 14:15:01miss-islingtonsetnosy: + miss-islington
messages: + msg354212
2019-10-08 13:54:25miss-islingtonsetpull_requests: + pull_request16239
2019-10-08 13:30:20serhiy.storchakasetmessages: + msg354204
2019-10-08 09:01:56serhiy.storchakasetkeywords: + patch
stage: patch review
pull_requests: + pull_request16227
2019-10-08 08:59:44serhiy.storchakacreate