summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorThomas Wouters <thomas@python.org>2025-06-03 15:34:08 (GMT)
committerThomas Wouters <thomas@python.org>2025-06-03 15:34:24 (GMT)
commit8a526ec7cbea8fafc9dae4b3dd6371906b9be342 (patch)
treeb3c0292f8914d2070bbca5741dac78b1e325f302 /Doc
parentaa9eb5f757ceff461e6e996f12c89e5d9b583b01 (diff)
downloadcpython-3.13.4.zip
cpython-3.13.4.tar.gz
cpython-3.13.4.tar.bz2
Python 3.13.4v3.13.4
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/hashlib.rst2
-rw-r--r--Doc/library/logging.handlers.rst2
-rw-r--r--Doc/library/os.path.rst4
-rw-r--r--Doc/library/socket.rst2
-rw-r--r--Doc/library/tarfile.rst4
5 files changed, 7 insertions, 7 deletions
diff --git a/Doc/library/hashlib.rst b/Doc/library/hashlib.rst
index 1c5d951..e8298d1 100644
--- a/Doc/library/hashlib.rst
+++ b/Doc/library/hashlib.rst
@@ -302,7 +302,7 @@ a file or file-like object.
.. versionadded:: 3.11
- .. versionchanged:: next
+ .. versionchanged:: 3.13.4
Now raises a :exc:`BlockingIOError` if the file is opened in blocking
mode. Previously, spurious null bytes were added to the digest.
diff --git a/Doc/library/logging.handlers.rst b/Doc/library/logging.handlers.rst
index 1c4085e..b48c5cb 100644
--- a/Doc/library/logging.handlers.rst
+++ b/Doc/library/logging.handlers.rst
@@ -1180,7 +1180,7 @@ possible, while any potentially slow operations (such as sending an email via
This starts up a background thread to monitor the queue for
LogRecords to process.
- .. versionchanged:: next
+ .. versionchanged:: 3.13.4
Raises :exc:`RuntimeError` if called and the listener is already
running.
diff --git a/Doc/library/os.path.rst b/Doc/library/os.path.rst
index f72aee1..8713581 100644
--- a/Doc/library/os.path.rst
+++ b/Doc/library/os.path.rst
@@ -446,7 +446,7 @@ the :mod:`glob` module.)
.. versionchanged:: 3.10
The *strict* parameter was added.
- .. versionchanged:: next
+ .. versionchanged:: 3.13.4
The :py:data:`~os.path.ALLOW_MISSING` value for the *strict* parameter
was added.
@@ -454,7 +454,7 @@ the :mod:`glob` module.)
Special value used for the *strict* argument in :func:`realpath`.
- .. versionadded:: next
+ .. versionadded:: 3.13.4
.. function:: relpath(path, start=os.curdir)
diff --git a/Doc/library/socket.rst b/Doc/library/socket.rst
index e5a2815..1a24f0d 100644
--- a/Doc/library/socket.rst
+++ b/Doc/library/socket.rst
@@ -470,7 +470,7 @@ The AF_* and SOCK_* constants are now :class:`AddressFamily` and
.. versionchanged:: 3.11
NetBSD support was added.
- .. versionchanged:: next
+ .. versionchanged:: 3.13.4
Restored missing ``CAN_RAW_ERR_FILTER`` on Linux.
.. data:: CAN_BCM
diff --git a/Doc/library/tarfile.rst b/Doc/library/tarfile.rst
index f48ab61..1c2f3b1 100644
--- a/Doc/library/tarfile.rst
+++ b/Doc/library/tarfile.rst
@@ -256,7 +256,7 @@ The :mod:`tarfile` module defines the following exceptions:
The exception that was raised to reject the replacement member is available
as :attr:`!BaseException.__context__`.
- .. versionadded:: next
+ .. versionadded:: 3.13.4
The following constants are available at the module level:
@@ -1095,7 +1095,7 @@ reused in custom filters:
Return the modified ``TarInfo`` member.
- .. versionchanged:: next
+ .. versionchanged:: 3.13.4
Link targets are now normalized.