summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorHugo van Kemenade <1324225+hugovk@users.noreply.github.com>2025-03-14 15:04:35 (GMT)
committerHugo van Kemenade <1324225+hugovk@users.noreply.github.com>2025-03-14 15:05:02 (GMT)
commit77b2c933cab4f38a8ce1f7633b96ba213566d306 (patch)
tree936505fce8031382ff2fc7dd165bd1f0592ac6f6 /Doc/library
parentca1bedc9a4da523f4d1f9c2ec92d98dcbed9c685 (diff)
downloadcpython-3.14.0a6.zip
cpython-3.14.0a6.tar.gz
cpython-3.14.0a6.tar.bz2
Python 3.14.0a6v3.14.0a6
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/concurrent.futures.rst6
-rw-r--r--Doc/library/contextvars.rst2
-rw-r--r--Doc/library/io.rst4
-rw-r--r--Doc/library/multiprocessing.rst2
-rw-r--r--Doc/library/socket.rst4
-rw-r--r--Doc/library/stdtypes.rst4
-rw-r--r--Doc/library/typing.rst4
-rw-r--r--Doc/library/uuid.rst8
8 files changed, 17 insertions, 17 deletions
diff --git a/Doc/library/concurrent.futures.rst b/Doc/library/concurrent.futures.rst
index 68d0810..a623c4c 100644
--- a/Doc/library/concurrent.futures.rst
+++ b/Doc/library/concurrent.futures.rst
@@ -73,7 +73,7 @@ Executor Objects
.. versionchanged:: 3.5
Added the *chunksize* parameter.
- .. versionchanged:: next
+ .. versionchanged:: 3.14
Added the *buffersize* parameter.
.. method:: shutdown(wait=True, *, cancel_futures=False)
@@ -431,7 +431,7 @@ to a :class:`ProcessPoolExecutor` will result in deadlock.
After calling this method the caller should no longer submit tasks to the
executor.
- .. versionadded:: next
+ .. versionadded:: 3.14
.. method:: kill_workers()
@@ -443,7 +443,7 @@ to a :class:`ProcessPoolExecutor` will result in deadlock.
After calling this method the caller should no longer submit tasks to the
executor.
- .. versionadded:: next
+ .. versionadded:: 3.14
.. _processpoolexecutor-example:
diff --git a/Doc/library/contextvars.rst b/Doc/library/contextvars.rst
index 3e3b30c..57580ce 100644
--- a/Doc/library/contextvars.rst
+++ b/Doc/library/contextvars.rst
@@ -112,7 +112,7 @@ Context Variables
assert var.get() == 'default value'
- .. versionadded:: next
+ .. versionadded:: 3.14
Added support for usage as a context manager.
diff --git a/Doc/library/io.rst b/Doc/library/io.rst
index cb21823..fcd7afe 100644
--- a/Doc/library/io.rst
+++ b/Doc/library/io.rst
@@ -1160,7 +1160,7 @@ with :deco:`typing.runtime_checkable`.
usually be :class:`str` or :class:`bytes`, but can be any type that is
read from the stream.
- .. versionadded:: next
+ .. versionadded:: 3.14
.. method:: read()
read(size, /)
@@ -1181,7 +1181,7 @@ with :deco:`typing.runtime_checkable`.
usually be :class:`str` or :class:`bytes`, but can be any type that can be
written to the stream.
- .. versionadded:: next
+ .. versionadded:: 3.14
.. method:: write(data, /)
diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst
index 41ade9f..9f98703 100644
--- a/Doc/library/multiprocessing.rst
+++ b/Doc/library/multiprocessing.rst
@@ -1953,7 +1953,7 @@ their parent process exits. The manager classes are defined in the
Create a shared :class:`set` object and return a proxy for it.
- .. versionadded:: next
+ .. versionadded:: 3.14
:class:`set` support was added.
.. versionchanged:: 3.6
diff --git a/Doc/library/socket.rst b/Doc/library/socket.rst
index 67f3074..bc888dc 100644
--- a/Doc/library/socket.rst
+++ b/Doc/library/socket.rst
@@ -148,7 +148,7 @@ created. Socket addresses are represented as follows:
one of :const:`BDADDR_BREDR` (default), :const:`BDADDR_LE_PUBLIC`,
:const:`BDADDR_LE_RANDOM`.
- .. versionchanged:: next
+ .. versionchanged:: 3.14
Added ``cid`` and ``bdaddr_type`` fields.
- :const:`BTPROTO_RFCOMM` accepts ``(bdaddr, channel)`` where ``bdaddr``
@@ -660,7 +660,7 @@ Constants
These constants describe the Bluetooth address type when binding or
connecting a :const:`BTPROTO_L2CAP` socket.
- .. versionadded:: next
+ .. versionadded:: 3.14
.. data:: HCI_FILTER
HCI_TIME_STAMP
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst
index 7b3fa21..2807177 100644
--- a/Doc/library/stdtypes.rst
+++ b/Doc/library/stdtypes.rst
@@ -2744,7 +2744,7 @@ data and are closely related to string objects in a variety of other ways.
:meth:`bytes.fromhex` now skips all ASCII whitespace in the string,
not just spaces.
- .. versionchanged:: next
+ .. versionchanged:: 3.14
:meth:`bytes.fromhex` now accepts ASCII :class:`bytes` and
:term:`bytes-like objects <bytes-like object>` as input.
@@ -2833,7 +2833,7 @@ objects.
:meth:`bytearray.fromhex` now skips all ASCII whitespace in the string,
not just spaces.
- .. versionchanged:: next
+ .. versionchanged:: 3.14
:meth:`bytearray.fromhex` now accepts ASCII :class:`bytes` and
:term:`bytes-like objects <bytes-like object>` as input.
diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst
index 44cbc73..99394b0 100644
--- a/Doc/library/typing.rst
+++ b/Doc/library/typing.rst
@@ -2298,7 +2298,7 @@ without the dedicated syntax, as documented below.
>>> Unpacked.__value__
tuple[bool, typing.Unpack[Alias]]
- .. versionadded:: next
+ .. versionadded:: 3.14
Other special directives
@@ -2384,7 +2384,7 @@ types.
.. versionchanged:: 3.11
Added support for generic namedtuples.
- .. versionchanged:: next
+ .. versionchanged:: 3.14
Using :func:`super` (and the ``__class__`` :term:`closure variable`) in methods of ``NamedTuple`` subclasses
is unsupported and causes a :class:`TypeError`.
diff --git a/Doc/library/uuid.rst b/Doc/library/uuid.rst
index 0fb2946..e9b4fb1 100644
--- a/Doc/library/uuid.rst
+++ b/Doc/library/uuid.rst
@@ -154,7 +154,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 versions 6, 7 and 8.
@@ -228,7 +228,7 @@ The :mod:`uuid` module defines the following functions:
If *node* or *clock_seq* exceed their expected bit count, only their least
significant bits are kept.
- .. versionadded:: next
+ .. versionadded:: 3.14
.. function:: uuid7()
@@ -240,7 +240,7 @@ The :mod:`uuid` module defines the following functions:
produced by this function embed a 48-bit timestamp and use a 42-bit counter
to guarantee monotonicity within a millisecond.
- .. versionadded:: next
+ .. versionadded:: 3.14
.. function:: uuid8(a=None, b=None, c=None)
@@ -361,7 +361,7 @@ The following options are accepted:
Specify the function name to use to generate the uuid. By default :func:`uuid4`
is used.
- .. versionchanged:: next
+ .. versionchanged:: 3.14
Allow generating UUID versions 6, 7 and 8.
.. option:: -n <namespace>