diff options
author | Giampaolo Rodola' <g.rodola@gmail.com> | 2013-05-21 19:02:04 (GMT) |
---|---|---|
committer | Giampaolo Rodola' <g.rodola@gmail.com> | 2013-05-21 19:02:04 (GMT) |
commit | 80e1c43ddf8099d0ebc4735d405942c4c5f6925c (patch) | |
tree | 5bd48d5345370228dd0a84ec65c11545e7c62cee /Doc/library/socket.rst | |
parent | b3a579223ea0d7d9354a0960751591f0d982e87a (diff) | |
download | cpython-80e1c43ddf8099d0ebc4735d405942c4c5f6925c.zip cpython-80e1c43ddf8099d0ebc4735d405942c4c5f6925c.tar.gz cpython-80e1c43ddf8099d0ebc4735d405942c4c5f6925c.tar.bz2 |
Fix issue #17996: expose socket.AF_LINK constant on BSD and OSX.
Diffstat (limited to 'Doc/library/socket.rst')
-rw-r--r-- | Doc/library/socket.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/library/socket.rst b/Doc/library/socket.rst index aa59f7f..edd196a 100644 --- a/Doc/library/socket.rst +++ b/Doc/library/socket.rst @@ -293,6 +293,11 @@ The module :mod:`socket` exports the following constants and functions: TIPC related constants, matching the ones exported by the C socket API. See the TIPC documentation for more information. +.. data:: AF_LINK + + Availability: BSD, OSX. + + .. versionadded:: 3.4 .. data:: has_ipv6 |