diff options
author | Cheryl Sabella <cheryl.sabella@gmail.com> | 2018-10-12 14:55:20 (GMT) |
---|---|---|
committer | Victor Stinner <vstinner@redhat.com> | 2018-10-12 14:55:20 (GMT) |
commit | 2d6097d027e0dd3debbabc702aa9c98d94ba32a3 (patch) | |
tree | 283b237b7e8da5afa68b5d79792d61f8d60596ac /Doc/library/select.rst | |
parent | da2bf9f66d0c95b988c5d87646d168f65499b316 (diff) | |
download | cpython-2d6097d027e0dd3debbabc702aa9c98d94ba32a3.zip cpython-2d6097d027e0dd3debbabc702aa9c98d94ba32a3.tar.gz cpython-2d6097d027e0dd3debbabc702aa9c98d94ba32a3.tar.bz2 |
bpo-11233: Create availability directive for documentation (GH-9692)
Replace "Availability: xxx" with ".. availability:: xxx" in the doc.
Original patch by Georg Brandl.
Co-Authored-By: Georg Brandl <georg@python.org>
Diffstat (limited to 'Doc/library/select.rst')
-rw-r--r-- | Doc/library/select.rst | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Doc/library/select.rst b/Doc/library/select.rst index 8feedaa..f5b25db 100644 --- a/Doc/library/select.rst +++ b/Doc/library/select.rst @@ -171,7 +171,9 @@ The module defines the following: :func:`poll` or another interface in this module. This doesn't apply to other kind of file-like objects such as sockets. - This value is guaranteed by POSIX to be at least 512. Availability: Unix. + This value is guaranteed by POSIX to be at least 512. + + .. availability:: Unix .. versionadded:: 3.2 |