diff options
Diffstat (limited to 'Doc')
| -rw-r--r-- | Doc/c-api/unicode.rst | 2 | ||||
| -rw-r--r-- | Doc/library/concurrent.futures.rst | 6 | ||||
| -rw-r--r-- | Doc/library/contextvars.rst | 2 | ||||
| -rw-r--r-- | Doc/library/io.rst | 4 | ||||
| -rw-r--r-- | Doc/library/multiprocessing.rst | 2 | ||||
| -rw-r--r-- | Doc/library/socket.rst | 4 | ||||
| -rw-r--r-- | Doc/library/stdtypes.rst | 4 | ||||
| -rw-r--r-- | Doc/library/typing.rst | 4 | ||||
| -rw-r--r-- | Doc/library/uuid.rst | 8 |
9 files changed, 18 insertions, 18 deletions
diff --git a/Doc/c-api/unicode.rst b/Doc/c-api/unicode.rst index 65b5aa7..3106396 100644 --- a/Doc/c-api/unicode.rst +++ b/Doc/c-api/unicode.rst @@ -1868,7 +1868,7 @@ The following API is deprecated. .. versionadded:: 3.3 - .. deprecated:: next + .. deprecated:: 3.14 This API does nothing since Python 3.12. Previously, this could be called to check if :c:func:`PyUnicode_READY` is necessary. 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> |
