summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorHugo van Kemenade <1324225+hugovk@users.noreply.github.com>2024-10-15 19:29:35 (GMT)
committerHugo van Kemenade <1324225+hugovk@users.noreply.github.com>2024-10-15 19:34:54 (GMT)
commit8cdaca8b25e3354530d66cbccc622e0e914e8e8a (patch)
tree569f57edf7b734105549a331020eb14f73347240 /Doc/library
parent3ea488aac44887a7cdb30be69580c81a0ca6afe2 (diff)
downloadcpython-8cdaca8b25e3354530d66cbccc622e0e914e8e8a.zip
cpython-8cdaca8b25e3354530d66cbccc622e0e914e8e8a.tar.gz
cpython-8cdaca8b25e3354530d66cbccc622e0e914e8e8a.tar.bz2
Python 3.14.0a1v3.14.0a1
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/ast.rst2
-rw-r--r--Doc/library/ctypes.rst2
-rw-r--r--Doc/library/dis.rst4
-rw-r--r--Doc/library/pathlib.rst4
-rw-r--r--Doc/library/symtable.rst8
5 files changed, 10 insertions, 10 deletions
diff --git a/Doc/library/ast.rst b/Doc/library/ast.rst
index 3d2df03..22d8c87 100644
--- a/Doc/library/ast.rst
+++ b/Doc/library/ast.rst
@@ -2491,7 +2491,7 @@ effects on the compilation of a program:
differ in whitespace or similar details. Attributes include line numbers
and column offsets.
- .. versionadded:: next
+ .. versionadded:: 3.14
.. _ast-cli:
diff --git a/Doc/library/ctypes.rst b/Doc/library/ctypes.rst
index d76b8d4..d49959b 100644
--- a/Doc/library/ctypes.rst
+++ b/Doc/library/ctypes.rst
@@ -2303,7 +2303,7 @@ These are the fundamental ctypes data types:
Represents the C :c:expr:`double complex` datatype, if available. The
constructor accepts an optional :class:`complex` initializer.
- .. versionadded:: next
+ .. versionadded:: 3.14
.. class:: c_float_complex
diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst
index 1d084a8..a2e44e0 100644
--- a/Doc/library/dis.rst
+++ b/Doc/library/dis.rst
@@ -959,7 +959,7 @@ iterations of the loop.
list of constants supported by this instruction. Used by the :keyword:`assert`
statement to load :exc:`AssertionError`.
- .. versionadded:: next
+ .. versionadded:: 3.14
.. opcode:: LOAD_BUILD_CLASS
@@ -1827,7 +1827,7 @@ iterations of the loop.
If ``type(STACK[-1]).__xxx__`` is not a method, leave
``STACK[-1].__xxx__; NULL`` on the stack.
- .. versionadded:: next
+ .. versionadded:: 3.14
**Pseudo-instructions**
diff --git a/Doc/library/pathlib.rst b/Doc/library/pathlib.rst
index 30d0d38..4380122 100644
--- a/Doc/library/pathlib.rst
+++ b/Doc/library/pathlib.rst
@@ -1563,7 +1563,7 @@ Copying, moving and deleting
This argument has no effect when copying files on Windows (where
metadata is always preserved).
- .. versionadded:: next
+ .. versionadded:: 3.14
.. method:: Path.copy_into(target_dir, *, follow_symlinks=True, \
@@ -1574,7 +1574,7 @@ Copying, moving and deleting
:meth:`Path.copy`. Returns a new :class:`!Path` instance pointing to the
copy.
- .. versionadded:: next
+ .. versionadded:: 3.14
.. method:: Path.rename(target)
diff --git a/Doc/library/symtable.rst b/Doc/library/symtable.rst
index 56cd6b8..54e19af 100644
--- a/Doc/library/symtable.rst
+++ b/Doc/library/symtable.rst
@@ -256,7 +256,7 @@ Examining Symbol Tables
Return ``True`` if the symbol is a type parameter.
- .. versionadded:: next
+ .. versionadded:: 3.14
.. method:: is_global()
@@ -303,7 +303,7 @@ Examining Symbol Tables
be free from the perspective of ``C.method``, thereby allowing
the latter to return *1* at runtime and not *2*.
- .. versionadded:: next
+ .. versionadded:: 3.14
.. method:: is_assigned()
@@ -313,13 +313,13 @@ Examining Symbol Tables
Return ``True`` if the symbol is a comprehension iteration variable.
- .. versionadded:: next
+ .. versionadded:: 3.14
.. method:: is_comp_cell()
Return ``True`` if the symbol is a cell in an inlined comprehension.
- .. versionadded:: next
+ .. versionadded:: 3.14
.. method:: is_namespace()