summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorHugo van Kemenade <1324225+hugovk@users.noreply.github.com>2025-04-08 11:20:32 (GMT)
committerHugo van Kemenade <1324225+hugovk@users.noreply.github.com>2025-04-08 11:20:51 (GMT)
commit29af6cee02fbe74d59c6d725a506fe60c77d37d6 (patch)
treedaa7d8cdc6601fa4a99e51c2f02a1e9aeae51ea1 /Doc/library
parent0f04f2456a2ff996cc670342a287928ab5f9b706 (diff)
downloadcpython-3.14.0a7.zip
cpython-3.14.0a7.tar.gz
cpython-3.14.0a7.tar.bz2
Python 3.14.0a7v3.14.0a7
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/ctypes.rst4
-rw-r--r--Doc/library/fnmatch.rst2
-rw-r--r--Doc/library/graphlib.rst2
-rw-r--r--Doc/library/http.server.rst10
-rw-r--r--Doc/library/multiprocessing.rst4
-rw-r--r--Doc/library/sys.rst2
-rw-r--r--Doc/library/test.rst2
-rw-r--r--Doc/library/threading.rst4
-rw-r--r--Doc/library/uuid.rst2
9 files changed, 16 insertions, 16 deletions
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: