summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/base64.rst6
-rw-r--r--Doc/library/binascii.rst14
-rw-r--r--Doc/library/contextlib.rst8
-rw-r--r--Doc/library/inspect.rst2
-rw-r--r--Doc/library/multiprocessing.rst2
-rw-r--r--Doc/library/os.path.rst2
-rw-r--r--Doc/library/symtable.rst4
-rw-r--r--Doc/library/tomllib.rst2
-rw-r--r--Doc/library/urllib.parse.rst8
9 files changed, 24 insertions, 24 deletions
diff --git a/Doc/library/base64.rst b/Doc/library/base64.rst
index 975c488..7716286 100644
--- a/Doc/library/base64.rst
+++ b/Doc/library/base64.rst
@@ -105,10 +105,10 @@ POST request.
For more information about the strict base64 check, see :func:`binascii.a2b_base64`
- .. versionchanged:: next
+ .. versionchanged:: 3.15
Added the *ignorechars* parameter.
- .. deprecated:: next
+ .. deprecated:: 3.15
Accepting the ``+`` and ``/`` characters with an alternative alphabet
is now deprecated.
@@ -142,7 +142,7 @@ POST request.
``/`` in the standard Base64 alphabet, and return the decoded
:class:`bytes`.
- .. deprecated:: next
+ .. deprecated:: 3.15
Accepting the ``+`` and ``/`` characters is now deprecated.
diff --git a/Doc/library/binascii.rst b/Doc/library/binascii.rst
index 39320da..8a241e5 100644
--- a/Doc/library/binascii.rst
+++ b/Doc/library/binascii.rst
@@ -75,7 +75,7 @@ The :mod:`!binascii` module defines the following functions:
.. versionchanged:: 3.11
Added the *strict_mode* parameter.
- .. versionchanged:: next
+ .. versionchanged:: 3.15
Added the *ignorechars* parameter.
@@ -122,7 +122,7 @@ The :mod:`!binascii` module defines the following functions:
Invalid Ascii85 data will raise :exc:`binascii.Error`.
- .. versionadded:: next
+ .. versionadded:: 3.15
.. function:: b2a_ascii85(data, /, *, foldspaces=False, wrapcol=0, pad=False, adobe=False)
@@ -145,7 +145,7 @@ The :mod:`!binascii` module defines the following functions:
*adobe* controls whether the encoded byte sequence is framed with ``<~``
and ``~>``, which is used by the Adobe implementation.
- .. versionadded:: next
+ .. versionadded:: 3.15
.. function:: a2b_base85(string, /)
@@ -160,7 +160,7 @@ The :mod:`!binascii` module defines the following functions:
Invalid Base85 data will raise :exc:`binascii.Error`.
- .. versionadded:: next
+ .. versionadded:: 3.15
.. function:: b2a_base85(data, /, *, pad=False)
@@ -171,7 +171,7 @@ The :mod:`!binascii` module defines the following functions:
If *pad* is true, the input is padded with ``b'\0'`` so its length is a
multiple of 4 bytes before encoding.
- .. versionadded:: next
+ .. versionadded:: 3.15
.. function:: a2b_z85(string, /)
@@ -188,7 +188,7 @@ The :mod:`!binascii` module defines the following functions:
Invalid Z85 data will raise :exc:`binascii.Error`.
- .. versionadded:: next
+ .. versionadded:: 3.15
.. function:: b2a_z85(data, /, *, pad=False)
@@ -201,7 +201,7 @@ The :mod:`!binascii` module defines the following functions:
See `Z85 specification <https://rfc.zeromq.org/spec/32/>`_ for more information.
- .. versionadded:: next
+ .. versionadded:: 3.15
.. function:: a2b_qp(data, header=False)
diff --git a/Doc/library/contextlib.rst b/Doc/library/contextlib.rst
index 564c11d..eec9ed1 100644
--- a/Doc/library/contextlib.rst
+++ b/Doc/library/contextlib.rst
@@ -564,7 +564,7 @@ Functions and classes provided:
Raises :exc:`TypeError` instead of :exc:`AttributeError` if *cm*
is not a context manager.
- .. versionchanged:: next
+ .. versionchanged:: 3.15
Added support for arbitrary descriptors :meth:`!__enter__` and
:meth:`!__exit__`.
@@ -586,7 +586,7 @@ Functions and classes provided:
The passed in object is returned from the function, allowing this
method to be used as a function decorator.
- .. versionchanged:: next
+ .. versionchanged:: 3.15
Added support for arbitrary descriptors :meth:`!__exit__`.
.. method:: callback(callback, /, *args, **kwds)
@@ -646,7 +646,7 @@ Functions and classes provided:
Raises :exc:`TypeError` instead of :exc:`AttributeError` if *cm*
is not an asynchronous context manager.
- .. versionchanged:: next
+ .. versionchanged:: 3.15
Added support for arbitrary descriptors :meth:`!__aenter__` and :meth:`!__aexit__`.
.. method:: push_async_exit(exit)
@@ -654,7 +654,7 @@ Functions and classes provided:
Similar to :meth:`ExitStack.push` but expects either an asynchronous context manager
or a coroutine function.
- .. versionchanged:: next
+ .. versionchanged:: 3.15
Added support for arbitrary descriptors :meth:`!__aexit__`.
.. method:: push_async_callback(callback, /, *args, **kwds)
diff --git a/Doc/library/inspect.rst b/Doc/library/inspect.rst
index 57353bf..1455d90 100644
--- a/Doc/library/inspect.rst
+++ b/Doc/library/inspect.rst
@@ -360,7 +360,7 @@ attributes (see :ref:`import-mod-attrs` for module attributes):
Add ``f_generator`` attribute to frames.
-.. versionchanged:: next
+.. versionchanged:: 3.15
Add ``gi_state`` attribute to generators, ``cr_state`` attribute to
coroutines, and ``ag_state`` attribute to async generators.
diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst
index d3baf2d..e313a15 100644
--- a/Doc/library/multiprocessing.rst
+++ b/Doc/library/multiprocessing.rst
@@ -1257,7 +1257,7 @@ Miscellaneous
.. versionadded:: 3.4
- .. versionchanged:: next
+ .. versionchanged:: 3.15
Added the *on_error* parameter.
.. function:: set_start_method(method, force=False)
diff --git a/Doc/library/os.path.rst b/Doc/library/os.path.rst
index 70ff625..8081870 100644
--- a/Doc/library/os.path.rst
+++ b/Doc/library/os.path.rst
@@ -120,7 +120,7 @@ the :mod:`glob` module.)
.. versionchanged:: 3.6
Accepts a :term:`path-like object`.
- .. deprecated:: next
+ .. deprecated:: 3.15
Deprecated in favor of :func:`os.path.commonpath` for path prefixes.
The :func:`os.path.commonprefix` function is being deprecated due to
having a misleading name and module. The function is not safe to use for
diff --git a/Doc/library/symtable.rst b/Doc/library/symtable.rst
index 63549f4..264857f 100644
--- a/Doc/library/symtable.rst
+++ b/Doc/library/symtable.rst
@@ -184,7 +184,7 @@ Examining Symbol Tables
Return a tuple containing names of :term:`cell variables <closure variable>` in this table.
- .. versionadded:: next
+ .. versionadded:: 3.15
.. class:: Class
@@ -301,7 +301,7 @@ Examining Symbol Tables
Return ``True`` if the symbol is referenced but not assigned in a nested block.
- .. versionadded:: next
+ .. versionadded:: 3.15
.. method:: is_free_class()
diff --git a/Doc/library/tomllib.rst b/Doc/library/tomllib.rst
index d376779..dc6e0cc 100644
--- a/Doc/library/tomllib.rst
+++ b/Doc/library/tomllib.rst
@@ -18,7 +18,7 @@ support writing TOML.
.. versionadded:: 3.11
The module was added with support for TOML 1.0.0.
-.. versionchanged:: next
+.. versionchanged:: 3.15
Added TOML 1.1.0 support.
See the :ref:`What's New <whatsnew315-tomllib-1-1-0>` for details.
diff --git a/Doc/library/urllib.parse.rst b/Doc/library/urllib.parse.rst
index 0fd3070..ef48add 100644
--- a/Doc/library/urllib.parse.rst
+++ b/Doc/library/urllib.parse.rst
@@ -217,7 +217,7 @@ or on combining URL components into a URL string.
.. versionchanged:: 3.12
Leading WHATWG C0 control and space characters are stripped from the URL.
- .. versionchanged:: next
+ .. versionchanged:: 3.15
Added the *missing_as_none* parameter.
.. _WHATWG spec: https://url.spec.whatwg.org/#concept-basic-url-parser
@@ -333,7 +333,7 @@ or on combining URL components into a URL string.
By default, *keep_empty* is true if *parts* is the result of the
:func:`urlsplit` call with ``missing_as_none=True``.
- .. versionchanged:: next
+ .. versionchanged:: 3.15
Added the *keep_empty* parameter.
@@ -371,7 +371,7 @@ or on combining URL components into a URL string.
By default, *keep_empty* is true if *parts* is the result of the
:func:`urlparse` call with ``missing_as_none=True``.
- .. versionchanged:: next
+ .. versionchanged:: 3.15
Added the *keep_empty* parameter.
@@ -444,7 +444,7 @@ or on combining URL components into a URL string.
.. versionchanged:: 3.2
Result is a structured object rather than a simple 2-tuple.
- .. versionchanged:: next
+ .. versionchanged:: 3.15
Added the *missing_as_none* parameter.
.. function:: unwrap(url)