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: Missing mention of some class attributes in socketserver documentation
Type: enhancement Stage: patch review
Components: Documentation Versions: Python 3.10, Python 3.9, Python 3.8
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: docs@python Nosy List: docs@python, martin.panter, overmighty
Priority: normal Keywords: patch

Created on 2020-03-24 21:04 by overmighty, last changed 2022-04-11 14:59 by admin.

Pull Requests
URL Status Linked Edit
PR 19147 open overmighty, 2020-03-24 21:16
Messages (1)
msg364962 - (view) Author: OverMighty (overmighty) * Date: 2020-03-24 21:04
The documentation of the `socketserver` module of the Python standard library, available here: https://docs.python.org/3/library/socketserver.html, doesn't mention the existence of the following class attributes:

StreamRequestHandler.connection (defined at line 764 of socketserver.py)
DatagramRequestHandler.packet (defined at line 812 of socketserver.py)
DatagramRequestHandler.socket (defined at line 812 of socketserver.py)
History
Date User Action Args
2022-04-11 14:59:28adminsetgithub: 84238
2020-05-23 20:09:52cheryl.sabellasetnosy: + martin.panter

versions: + Python 3.10, - Python 3.5, Python 3.6, Python 3.7
2020-03-24 21:16:35overmightysetkeywords: + patch
stage: patch review
pull_requests: + pull_request18507
2020-03-24 21:04:04overmightycreate