diff options
Diffstat (limited to 'Doc')
| -rw-r--r-- | Doc/c-api/monitoring.rst | 2 | ||||
| -rw-r--r-- | Doc/library/ctypes.rst | 4 | ||||
| -rw-r--r-- | Doc/library/fnmatch.rst | 2 | ||||
| -rw-r--r-- | Doc/library/graphlib.rst | 2 | ||||
| -rw-r--r-- | Doc/library/http.server.rst | 10 | ||||
| -rw-r--r-- | Doc/library/multiprocessing.rst | 4 | ||||
| -rw-r--r-- | Doc/library/sys.rst | 2 | ||||
| -rw-r--r-- | Doc/library/test.rst | 2 | ||||
| -rw-r--r-- | Doc/library/threading.rst | 4 | ||||
| -rw-r--r-- | Doc/library/uuid.rst | 2 | ||||
| -rw-r--r-- | Doc/reference/compound_stmts.rst | 4 | ||||
| -rw-r--r-- | Doc/using/cmdline.rst | 4 | ||||
| -rw-r--r-- | Doc/using/configure.rst | 2 |
13 files changed, 22 insertions, 22 deletions
diff --git a/Doc/c-api/monitoring.rst b/Doc/c-api/monitoring.rst index 985a584..7926148 100644 --- a/Doc/c-api/monitoring.rst +++ b/Doc/c-api/monitoring.rst @@ -205,6 +205,6 @@ would typically correspond to a python function. .. versionadded:: 3.13 - .. deprecated:: next + .. deprecated:: 3.14 This function is :term:`soft deprecated`. diff --git a/Doc/library/ctypes.rst b/Doc/library/ctypes.rst index a550da9..d3a81ce 100644 --- a/Doc/library/ctypes.rst +++ b/Doc/library/ctypes.rst @@ -2632,7 +2632,7 @@ These are the fundamental ctypes data types: Represents the C :c:expr:`PyObject *` datatype. Calling this without an argument creates a ``NULL`` :c:expr:`PyObject *` pointer. - .. versionchanged:: next + .. versionchanged:: 3.14 :class:`!py_object` is now a :term:`generic type`. The :mod:`!ctypes.wintypes` module provides quite some other Windows specific @@ -2846,7 +2846,7 @@ fields, or any other data types containing pointer type fields. :class:`!CField` objects are created via :attr:`~Structure._fields_`; do not instantiate the class directly. - .. versionadded:: next + .. versionadded:: 3.14 Previously, descriptors only had ``offset`` and ``size`` attributes and a readable string representation; the :class:`!CField` class was not diff --git a/Doc/library/fnmatch.rst b/Doc/library/fnmatch.rst index 8ebb09f..8674e85 100644 --- a/Doc/library/fnmatch.rst +++ b/Doc/library/fnmatch.rst @@ -97,7 +97,7 @@ functions: :func:`fnmatch`, :func:`fnmatchcase`, :func:`.filter`. It is the same as ``[n for n in names if not fnmatch(n, pat)]``, but implemented more efficiently. - .. versionadded:: next + .. versionadded:: 3.14 .. function:: translate(pat) diff --git a/Doc/library/graphlib.rst b/Doc/library/graphlib.rst index 4942470..053d5f8 100644 --- a/Doc/library/graphlib.rst +++ b/Doc/library/graphlib.rst @@ -109,7 +109,7 @@ A :exc:`ValueError` will be raised if the sort has been started by :meth:`~.static_order` or :meth:`~.get_ready`. - .. versionchanged:: next + .. versionchanged:: 3.14 ``prepare()`` can now be called more than once as long as the sort has not started. Previously this raised :exc:`ValueError`. diff --git a/Doc/library/http.server.rst b/Doc/library/http.server.rst index 2d064aa..54df4a7 100644 --- a/Doc/library/http.server.rst +++ b/Doc/library/http.server.rst @@ -78,7 +78,7 @@ handler. Code to create and run the server looks like this:: By default, it is set to ``["http/1.1"]``, meaning the server supports HTTP/1.1. - .. versionadded:: next + .. versionadded:: 3.14 .. class:: ThreadingHTTPSServer(server_address, RequestHandlerClass,\ bind_and_activate=True, *, certfile, keyfile=None,\ @@ -88,7 +88,7 @@ handler. Code to create and run the server looks like this:: requests by inheriting from :class:`~socketserver.ThreadingMixIn`. This is analogous to :class:`ThreadingHTTPServer` only using :class:`HTTPSServer`. - .. versionadded:: next + .. versionadded:: 3.14 The :class:`HTTPServer`, :class:`ThreadingHTTPServer`, :class:`HTTPSServer` and @@ -588,7 +588,7 @@ The following options are accepted: python -m http.server --tls-cert fullchain.pem - .. versionadded:: next + .. versionadded:: 3.14 .. option:: --tls-key @@ -596,7 +596,7 @@ The following options are accepted: This option requires ``--tls-cert`` to be specified. - .. versionadded:: next + .. versionadded:: 3.14 .. option:: --tls-password-file @@ -609,7 +609,7 @@ The following options are accepted: This option requires `--tls-cert`` to be specified. - .. versionadded:: next + .. versionadded:: 3.14 .. _http.server-security: diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst index 9603698..6ccc0d4 100644 --- a/Doc/library/multiprocessing.rst +++ b/Doc/library/multiprocessing.rst @@ -1425,7 +1425,7 @@ object -- see :ref:`multiprocessing-managers`. Return a boolean indicating whether this object is locked right now. - .. versionadded:: next + .. versionadded:: 3.14 .. class:: RLock() @@ -1492,7 +1492,7 @@ object -- see :ref:`multiprocessing-managers`. Return a boolean indicating whether this object is locked right now. - .. versionadded:: next + .. versionadded:: 3.14 .. class:: Semaphore([value]) diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst index 477a4e7..f4120ab 100644 --- a/Doc/library/sys.rst +++ b/Doc/library/sys.rst @@ -1854,7 +1854,7 @@ always available. Unless explicitly noted otherwise, all variables are read-only local and remote interpreters must be the same exact version. .. availability:: Unix, Windows. - .. versionadded:: next + .. versionadded:: 3.14 .. function:: _enablelegacywindowsfsencoding() diff --git a/Doc/library/test.rst b/Doc/library/test.rst index f27cd55..8c06a2b 100644 --- a/Doc/library/test.rst +++ b/Doc/library/test.rst @@ -1468,7 +1468,7 @@ The :mod:`test.support.os_helper` module provides support for os tests. Temporarily unset one or more environment variables. - .. versionchanged:: next + .. versionchanged:: 3.14 More than one environment variable can be unset. diff --git a/Doc/library/threading.rst b/Doc/library/threading.rst index d205e17..88aeaca 100644 --- a/Doc/library/threading.rst +++ b/Doc/library/threading.rst @@ -713,7 +713,7 @@ call release as many times the lock has been acquired can lead to deadlock. Return a boolean indicating whether this object is locked right now. - .. versionadded:: next + .. versionadded:: 3.14 .. _condition-objects: @@ -812,7 +812,7 @@ item to the buffer only needs to wake up one consumer thread. Return a boolean indicating whether this object is locked right now. - .. versionadded:: next + .. versionadded:: 3.14 .. method:: wait(timeout=None) diff --git a/Doc/library/uuid.rst b/Doc/library/uuid.rst index 75ea27c..8cce6b9 100644 --- a/Doc/library/uuid.rst +++ b/Doc/library/uuid.rst @@ -385,7 +385,7 @@ The following options are accepted: Generate *num* fresh UUIDs. - .. versionadded:: next + .. versionadded:: 3.14 .. _uuid-example: diff --git a/Doc/reference/compound_stmts.rst b/Doc/reference/compound_stmts.rst index 7f6daae..f36ed3e 100644 --- a/Doc/reference/compound_stmts.rst +++ b/Doc/reference/compound_stmts.rst @@ -232,7 +232,7 @@ Additional information on exceptions can be found in section :ref:`exceptions`, and information on using the :keyword:`raise` statement to generate exceptions may be found in section :ref:`raise`. -.. versionchanged:: next +.. versionchanged:: 3.14 Support for optionally dropping grouping parentheses when using multiple exception types. See :pep:`758`. .. _except: @@ -463,7 +463,7 @@ always be the last one executed. The following function returns 'finally'. Prior to Python 3.8, a :keyword:`continue` statement was illegal in the :keyword:`!finally` clause due to a problem with the implementation. -.. versionchanged:: next +.. versionchanged:: 3.14 The compiler emits a :exc:`SyntaxWarning` when a :keyword:`return`, :keyword:`break` or :keyword:`continue` appears in a :keyword:`!finally` block (see :pep:`765`). diff --git a/Doc/using/cmdline.rst b/Doc/using/cmdline.rst index d487d80..b6e6a4c 100644 --- a/Doc/using/cmdline.rst +++ b/Doc/using/cmdline.rst @@ -612,7 +612,7 @@ Miscellaneous options if is not supported on the current system. See also :envvar:`PYTHON_DISABLE_REMOTE_DEBUG` and :pep:`768`. - .. versionadded:: next + .. versionadded:: 3.14 * :samp:`-X cpu_count={n}` overrides :func:`os.cpu_count`, :func:`os.process_cpu_count`, and :func:`multiprocessing.cpu_count`. @@ -1180,7 +1180,7 @@ conflict. See also the :option:`-X disable_remote_debug` command-line option. - .. versionadded:: next + .. versionadded:: 3.14 .. envvar:: PYTHON_CPU_COUNT diff --git a/Doc/using/configure.rst b/Doc/using/configure.rst index 3bf53bc..899920a 100644 --- a/Doc/using/configure.rst +++ b/Doc/using/configure.rst @@ -669,7 +669,7 @@ also be used to improve performance. and the functionality to receive code to be executed. - .. versionadded:: next + .. versionadded:: 3.14 .. _debug-build: |
