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

index 8c671bf900712b09d2d5d7ea7265d7e24f61108b..3c51dbc04dc92e1b36e4e86a84331aa24b23387f 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 8f090b5eec598054a06b33e7cabe0d0e07ea3cc9..a4073a4dac86b9fa95822a44aef7e54ed0049f47 100644 (file)
@@ -334,14 +334,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 3564855594c32d416efd903d48d115ea66ad7c74..a90436286ca8199485a0c0c13003bf2219d9b2d7 100644 (file)
@@ -1820,7 +1820,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`.
 
index 1a17c9cd7dec4e56f57bb7f191198bb297fc3152..c1e60a46774704e7b5c76aebf6565f05909e6218 100644 (file)
@@ -113,9 +113,9 @@ The :mod:`urllib.request` module defines the following functions:
       ``http/1.1`` when no *context* is given. Custom *context* should set
       ALPN protocols with :meth:`~ssl.SSLContext.set_alpn_protocols`.
 
-    .. versionchanged:: 3.13
-       Remove *cafile*, *capath* and *cadefault* parameters: use the *context*
-       parameter instead.
+   .. versionchanged:: 3.13
+      Remove *cafile*, *capath* and *cadefault* parameters: use the *context*
+      parameter instead.
 
 
 .. function:: install_opener(opener)