]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.12] Fix version directive indents (GH-117719) (#117810)
authorHugo van Kemenade <1324225+hugovk@users.noreply.github.com>
Fri, 12 Apr 2024 10:41:25 +0000 (13:41 +0300)
committerGitHub <noreply@github.com>
Fri, 12 Apr 2024 10:41:25 +0000 (10:41 +0000)
Doc/library/decimal.rst
Doc/library/ipaddress.rst
Doc/library/ssl.rst

index 4d99c6d92739afa35094467f26c18c2b257c781c..788250a10f5d404d76e8294a540125501c039061 100644 (file)
@@ -1517,7 +1517,7 @@ are also included in the pure Python version for compatibility.
    the C version uses a thread-local rather than a coroutine-local context and the value
    is ``False``.  This is slightly faster in some nested context scenarios.
 
-.. versionadded:: 3.8.3
+   .. versionadded:: 3.8.3
 
 
 Rounding modes
index 03dc956cd1352a9c67fabc6c8c3bbba21df63227..e68268d700375d8ebf191f2c3346fc7333c4e1db 100644 (file)
@@ -292,14 +292,14 @@ write code that handles both IP versions correctly.  Address objects are
    .. attribute:: is_multicast
    .. attribute:: is_private
    .. attribute:: is_global
+
+      .. versionadded:: 3.4
+
    .. attribute:: is_unspecified
    .. attribute:: is_reserved
    .. attribute:: is_loopback
    .. attribute:: is_link_local
 
-      .. versionadded:: 3.4
-         is_global
-
    .. attribute:: is_site_local
 
       ``True`` if the address is reserved for site-local usage.  Note that
index f1c39a736690379462f10096c6e213cf26259f97..3ada1cf693e6d59a07a6f1fbdc268164d065835d 100644 (file)
@@ -1775,7 +1775,7 @@ to speed up repeated connections from the same clients.
    .. versionchanged:: 3.6
       *session* argument was added.
 
-    .. versionchanged:: 3.7
+   .. versionchanged:: 3.7
       The method returns an instance of :attr:`SSLContext.sslsocket_class`
       instead of hard-coded :class:`SSLSocket`.