summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Doc/library/decimal.rst2
-rw-r--r--Doc/library/ipaddress.rst6
-rw-r--r--Doc/library/ssl.rst2
3 files changed, 5 insertions, 5 deletions
diff --git a/Doc/library/decimal.rst b/Doc/library/decimal.rst
index 4d99c6d..788250a 100644
--- a/Doc/library/decimal.rst
+++ b/Doc/library/decimal.rst
@@ -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
diff --git a/Doc/library/ipaddress.rst b/Doc/library/ipaddress.rst
index 03dc956..e68268d 100644
--- a/Doc/library/ipaddress.rst
+++ b/Doc/library/ipaddress.rst
@@ -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
diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst
index f1c39a7..3ada1cf 100644
--- a/Doc/library/ssl.rst
+++ b/Doc/library/ssl.rst
@@ -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`.