summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorHugo van Kemenade <1324225+hugovk@users.noreply.github.com>2024-11-19 14:51:57 (GMT)
committerHugo van Kemenade <1324225+hugovk@users.noreply.github.com>2024-11-19 14:52:44 (GMT)
commitadd43c3420b9700f5dc79da59e7d803cecb1c198 (patch)
tree4d63e5c5e2aa53efd2c65f28b55f5448d2935843 /Doc/library
parent4d771977b17e5ffaa9c2e8a2e6f5d393f68fc63c (diff)
downloadcpython-add43c3420b9700f5dc79da59e7d803cecb1c198.zip
cpython-add43c3420b9700f5dc79da59e7d803cecb1c198.tar.gz
cpython-add43c3420b9700f5dc79da59e7d803cecb1c198.tar.bz2
Python 3.14.0a2v3.14.0a2
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/concurrent.futures.rst4
-rw-r--r--Doc/library/functools.rst2
-rw-r--r--Doc/library/marshal.rst2
-rw-r--r--Doc/library/os.rst2
-rw-r--r--Doc/library/stdtypes.rst2
-rw-r--r--Doc/library/sys.rst2
-rw-r--r--Doc/library/tomllib.rst4
-rw-r--r--Doc/library/uuid.rst6
8 files changed, 12 insertions, 12 deletions
diff --git a/Doc/library/concurrent.futures.rst b/Doc/library/concurrent.futures.rst
index 48e0271..a57120e 100644
--- a/Doc/library/concurrent.futures.rst
+++ b/Doc/library/concurrent.futures.rst
@@ -690,7 +690,7 @@ Exception classes
of a :class:`~concurrent.futures.InterpreterPoolExecutor`
has failed initializing.
- .. versionadded:: next
+ .. versionadded:: 3.14
.. exception:: ExecutionFailed
@@ -699,7 +699,7 @@ Exception classes
:meth:`~concurrent.futures.Executor.submit` when there's an uncaught
exception from the submitted task.
- .. versionadded:: next
+ .. versionadded:: 3.14
.. currentmodule:: concurrent.futures.process
diff --git a/Doc/library/functools.rst b/Doc/library/functools.rst
index a9aceee..69d9d81 100644
--- a/Doc/library/functools.rst
+++ b/Doc/library/functools.rst
@@ -481,7 +481,7 @@ The :mod:`functools` module defines the following functions:
See :func:`itertools.accumulate` for an iterator that yields all intermediate
values.
- .. versionchanged:: next
+ .. versionchanged:: 3.14
*initial* is now supported as a keyword argument.
.. decorator:: singledispatch
diff --git a/Doc/library/marshal.rst b/Doc/library/marshal.rst
index 8b14ee4..e8e9071 100644
--- a/Doc/library/marshal.rst
+++ b/Doc/library/marshal.rst
@@ -67,7 +67,7 @@ this module. The following types are supported:
* Added format version 4, which supports efficient representations
of short strings.
-.. versionchanged:: next
+.. versionchanged:: 3.14
Added format version 5, which allows marshalling slices.
diff --git a/Doc/library/os.rst b/Doc/library/os.rst
index 6114425..dfe5ef0 100644
--- a/Doc/library/os.rst
+++ b/Doc/library/os.rst
@@ -261,7 +261,7 @@ process and user.
:data:`os.environ` or :data:`os.environb`, or calling :func:`os.getenv`
while reloading, may return an empty result.
- .. versionadded:: next
+ .. versionadded:: 3.14
.. function:: chdir(path)
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst
index a9b7662..2347437 100644
--- a/Doc/library/stdtypes.rst
+++ b/Doc/library/stdtypes.rst
@@ -3889,7 +3889,7 @@ copying.
.. versionchanged:: 3.5
memoryviews can now be indexed with tuple of integers.
- .. versionchanged:: next
+ .. versionchanged:: 3.14
memoryview is now a :term:`generic type`.
:class:`memoryview` has several methods:
diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst
index d83816e..773e5d4 100644
--- a/Doc/library/sys.rst
+++ b/Doc/library/sys.rst
@@ -944,7 +944,7 @@ always available.
This function should be used for specialized purposes only.
It is not guaranteed to exist in all implementations of Python.
- .. versionchanged:: next
+ .. versionchanged:: 3.14
The result may include objects from other interpreters.
diff --git a/Doc/library/tomllib.rst b/Doc/library/tomllib.rst
index 4b88b2e..30d7ff5 100644
--- a/Doc/library/tomllib.rst
+++ b/Doc/library/tomllib.rst
@@ -84,11 +84,11 @@ The following exceptions are available:
The column corresponding to *pos*.
- .. versionchanged:: next
+ .. versionchanged:: 3.14
Added the *msg*, *doc* and *pos* parameters.
Added the :attr:`msg`, :attr:`doc`, :attr:`pos`, :attr:`lineno` and :attr:`colno` attributes.
- .. deprecated:: next
+ .. deprecated:: 3.14
Passing free-form positional arguments is deprecated.
diff --git a/Doc/library/uuid.rst b/Doc/library/uuid.rst
index 9be12ed..39e82d0 100644
--- a/Doc/library/uuid.rst
+++ b/Doc/library/uuid.rst
@@ -153,7 +153,7 @@ which relays any information about the UUID's safety, using this enumeration:
The UUID version number (1 through 8, meaningful only when the variant is
:const:`RFC_4122`).
- .. versionchanged:: next
+ .. versionchanged:: 3.14
Added UUID version 8.
@@ -233,7 +233,7 @@ The :mod:`uuid` module defines the following functions:
non-specified arguments are substituted for a pseudo-random integer of
appropriate size.
- .. versionadded:: next
+ .. versionadded:: 3.14
.. index:: single: uuid8
@@ -323,7 +323,7 @@ The following options are accepted:
Specify the function name to use to generate the uuid. By default :func:`uuid4`
is used.
- .. versionadded:: next
+ .. versionadded:: 3.14
Allow generating UUID version 8.
.. option:: -n <namespace>