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/sys.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/sys.rst')
-rw-r--r-- | Doc/library/sys.rst | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst index cd43e54..46d8db0 100644 --- a/Doc/library/sys.rst +++ b/Doc/library/sys.rst @@ -161,7 +161,9 @@ always available. .. data:: dllhandle - Integer specifying the handle of the Python DLL. Availability: Windows. + Integer specifying the handle of the Python DLL. + + .. availability:: Windows. .. function:: displayhook(value) @@ -477,7 +479,7 @@ always available. Return the build time API version of Android as an integer. - Availability: Android. + .. availability:: Android. .. versionadded:: 3.7 @@ -501,7 +503,9 @@ always available. Return the current value of the flags that are used for :c:func:`dlopen` calls. Symbolic names for the flag values can be found in the :mod:`os` module (``RTLD_xxx`` constants, e.g. - :data:`os.RTLD_LAZY`). Availability: Unix. + :data:`os.RTLD_LAZY`). + + .. availability:: Unix. .. function:: getfilesystemencoding() @@ -669,7 +673,7 @@ always available. is being emulated for the process. It is intended for use in logging rather than for feature detection. - Availability: Windows. + .. availability:: Windows. .. versionchanged:: 3.2 Changed to a named tuple and added *service_pack_minor*, @@ -1094,7 +1098,7 @@ always available. can be found in the :mod:`os` module (``RTLD_xxx`` constants, e.g. :data:`os.RTLD_LAZY`). - Availability: Unix. + .. availability:: Unix. .. function:: setprofile(profilefunc) @@ -1340,7 +1344,7 @@ always available. This is equivalent to defining the :envvar:`PYTHONLEGACYWINDOWSFSENCODING` environment variable before launching Python. - Availability: Windows + .. availability:: Windows. .. versionadded:: 3.6 See :pep:`529` for more details. @@ -1486,7 +1490,9 @@ always available. stored as string resource 1000 in the Python DLL. The value is normally the first three characters of :const:`version`. It is provided in the :mod:`sys` module for informational purposes; modifying this value has no effect on the - registry keys used by Python. Availability: Windows. + registry keys used by Python. + + .. availability:: Windows. .. data:: _xoptions |