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: List socket.SO_*, SCM_*, MSG_*, IPPROTO_* symbols
Type: Stage: patch review
Components: Documentation Versions: Python 3.6, Python 3.5
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: docs@python Nosy List: Martha Simons, docs@python, giampaolo.rodola, martin.panter
Priority: normal Keywords: patch

Created on 2016-06-29 02:54 by martin.panter, last changed 2022-04-11 14:58 by admin.

Files
File name Uploaded Description Edit
socket-const.patch martin.panter, 2016-06-29 02:54 review
Messages (1)
msg269460 - (view) Author: Martin Panter (martin.panter) * (Python committer) Date: 2016-06-29 02:54
The documentation just says that SO_* etc constants are defined. However when people add new ones, they add them as new features to a specific version (not backported as bug fixes), but do not alter the documentation at all. IMO it is silly adding undocumented features. E.g. Issue 26907 was opened to add (among others) SO_PASSCRED, which was already added, undocumented, as part of Issue 6560.

This patch attempts to indicate which symbols are defined by Python (depending on OS availability), and therefore one can deduce if Python does not define a particular symbol. It could be adapted to the 2.7 documentation, but I am not really motivated for that on my own.

I also remove a redundant definition in the module, and removed a conditional because SO_REUSEADDR is required to always be defined according to the test suite. These specific changes should only be applied to 3.6.

I also found Issue 1732367, which has a patch documenting each AF_* symbol in a little more detail. That patch was never updated nor comitted, but it sounds like this kind of addition might be acceptable.
History
Date User Action Args
2022-04-11 14:58:33adminsetgithub: 71596
2019-05-03 16:44:31zach.waresetmessages: - msg341325
2019-05-03 06:07:00Martha Simonssetnosy: + Martha Simons
messages: + msg341325
2019-03-05 19:34:58giampaolo.rodolasetnosy: + giampaolo.rodola
2017-08-12 05:23:44martin.panterlinkissue1732367 dependencies
2016-06-29 02:54:56martin.pantercreate