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 Documentation AF_PACKET
Type: behavior Stage: resolved
Components: Documentation Versions: Python 3.11, Python 3.10, Python 3.9
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: TheNuGuy, andrei.avk, docs@python, lukasz.langa, martin.panter, miss-islington
Priority: normal Keywords: patch

Created on 2020-10-09 14:59 by TheNuGuy, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 27519 merged andrei.avk, 2021-07-31 21:20
PR 29136 merged miss-islington, 2021-10-21 21:13
PR 29137 merged miss-islington, 2021-10-21 21:13
Messages (7)
msg378331 - (view) Author: Darnel T. (TheNuGuy) Date: 2020-10-09 14:59
Python documentation said AF_PACKET exists, but when I looked at the python script it was missing on Mac and Windows. I'm currently on Windows.
msg378848 - (view) Author: Martin Panter (martin.panter) * (Python committer) Date: 2020-10-18 02:14
According to the documentation at <https://docs.python.org/3.8/library/socket.html#socket.AF_PACKET> and Issue 25041 it is only available on Linux. What documentation are you looking at?
msg398665 - (view) Author: Andrei Kulakov (andrei.avk) * (Python triager) Date: 2021-07-31 21:21
I've put up the PR here that makes availability clearer in the docs: https://github.com/python/cpython/pull/27519/files
msg404663 - (view) Author: Łukasz Langa (lukasz.langa) * (Python committer) Date: 2021-10-21 21:13
New changeset 51375388bee7287be2d942906b48c8cf3f691e8b by andrei kulakov in branch 'main':
bpo-41983: add availability info to socket docs (GH-27519)
https://github.com/python/cpython/commit/51375388bee7287be2d942906b48c8cf3f691e8b
msg404676 - (view) Author: Łukasz Langa (lukasz.langa) * (Python committer) Date: 2021-10-21 22:07
New changeset 8fd7e8965d0ff9f76401b86aec2166cc59a40637 by Miss Islington (bot) in branch '3.10':
bpo-41983: add availability info to socket docs (GH-27519) (GH-29136)
https://github.com/python/cpython/commit/8fd7e8965d0ff9f76401b86aec2166cc59a40637
msg404677 - (view) Author: Łukasz Langa (lukasz.langa) * (Python committer) Date: 2021-10-21 22:07
New changeset b26eae54e98f44eebc1599ca458228dae0568ffa by Miss Islington (bot) in branch '3.9':
bpo-41983: add availability info to socket docs (GH-27519) (GH-29137)
https://github.com/python/cpython/commit/b26eae54e98f44eebc1599ca458228dae0568ffa
msg404678 - (view) Author: Łukasz Langa (lukasz.langa) * (Python committer) Date: 2021-10-21 22:08
Thanks, Andrei! ✨ 🍰 ✨
History
Date User Action Args
2022-04-11 14:59:36adminsetgithub: 86149
2021-10-21 22:08:05lukasz.langasetstatus: open -> closed
versions: - Python 3.8
messages: + msg404678

resolution: fixed
stage: patch review -> resolved
2021-10-21 22:07:42lukasz.langasetmessages: + msg404677
2021-10-21 22:07:15lukasz.langasetmessages: + msg404676
2021-10-21 21:13:59miss-islingtonsetpull_requests: + pull_request27413
2021-10-21 21:13:56miss-islingtonsetnosy: + miss-islington
pull_requests: + pull_request27412
2021-10-21 21:13:45lukasz.langasetnosy: + lukasz.langa
messages: + msg404663
2021-07-31 21:22:53andrei.avksettype: behavior
versions: + Python 3.9, Python 3.10, Python 3.11
2021-07-31 21:21:44andrei.avksetmessages: + msg398665
2021-07-31 21:20:42andrei.avksetkeywords: + patch
nosy: + andrei.avk

pull_requests: + pull_request26034
stage: patch review
2020-10-18 02:14:03martin.pantersetnosy: + martin.panter
messages: + msg378848
2020-10-09 14:59:09TheNuGuycreate