diff options
author | Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> | 2024-12-17 09:49:37 (GMT) |
---|---|---|
committer | Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> | 2024-12-17 09:50:39 (GMT) |
commit | 401bfc69d1258fde07141cd1a12af00aa44a8e0f (patch) | |
tree | a007d598bd18eb7b70de8127ff4697125229b68d /Doc | |
parent | b9a492b809d8765ee365a5dd3c6ba4e5130a80af (diff) | |
download | cpython-401bfc69d1258fde07141cd1a12af00aa44a8e0f.zip cpython-401bfc69d1258fde07141cd1a12af00aa44a8e0f.tar.gz cpython-401bfc69d1258fde07141cd1a12af00aa44a8e0f.tar.bz2 |
Python 3.14.0a3v3.14.0a3
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/c-api/long.rst | 4 | ||||
-rw-r--r-- | Doc/library/ctypes.rst | 4 | ||||
-rw-r--r-- | Doc/library/errno.rst | 2 | ||||
-rw-r--r-- | Doc/library/select.rst | 2 | ||||
-rw-r--r-- | Doc/library/stdtypes.rst | 4 |
5 files changed, 8 insertions, 8 deletions
diff --git a/Doc/c-api/long.rst b/Doc/c-api/long.rst index f48cd07..084ba51 100644 --- a/Doc/c-api/long.rst +++ b/Doc/c-api/long.rst @@ -657,7 +657,7 @@ distinguished from a number. Use :c:func:`PyErr_Occurred` to disambiguate. Export API ^^^^^^^^^^ -.. versionadded:: next +.. versionadded:: 3.14 .. c:struct:: PyLongLayout @@ -769,7 +769,7 @@ PyLongWriter API The :c:type:`PyLongWriter` API can be used to import an integer. -.. versionadded:: next +.. versionadded:: 3.14 .. c:struct:: PyLongWriter diff --git a/Doc/library/ctypes.rst b/Doc/library/ctypes.rst index bd88fa3..09692e5 100644 --- a/Doc/library/ctypes.rst +++ b/Doc/library/ctypes.rst @@ -1964,7 +1964,7 @@ Utility functions .. availability:: Windows - .. versionadded:: next + .. versionadded:: 3.14 .. function:: cast(obj, type) @@ -2825,4 +2825,4 @@ Exceptions .. availability:: Windows - .. versionadded:: next + .. versionadded:: 3.14 diff --git a/Doc/library/errno.rst b/Doc/library/errno.rst index 824d489..d803366 100644 --- a/Doc/library/errno.rst +++ b/Doc/library/errno.rst @@ -617,7 +617,7 @@ defined by the module. The specific list of defined symbols is available as Memory page has hardware error. - .. versionadded:: next + .. versionadded:: 3.14 .. data:: EALREADY diff --git a/Doc/library/select.rst b/Doc/library/select.rst index 4fcff91..457970a 100644 --- a/Doc/library/select.rst +++ b/Doc/library/select.rst @@ -324,7 +324,7 @@ Edge and Level Trigger Polling (epoll) Objects :const:`EPOLLEXCLUSIVE` was added. It's only supported by Linux Kernel 4.5 or later. - .. versionadded:: next + .. versionadded:: 3.14 :const:`EPOLLWAKEUP` was added. It's only supported by Linux Kernel 3.5 or later. diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index d5f7714..1918275 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -4153,7 +4153,7 @@ copying. Count the number of occurrences of *value*. - .. versionadded:: next + .. versionadded:: 3.14 .. method:: index(value, start=0, stop=sys.maxsize, /) @@ -4162,7 +4162,7 @@ copying. Raises a :exc:`ValueError` if *value* cannot be found. - .. versionadded:: next + .. versionadded:: 3.14 There are also several readonly attributes available: |