Skip to content

Commit

Permalink
Python 3.14.0a5
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Feb 11, 2025
1 parent 5cdd6e5 commit 3ae9101
Show file tree
Hide file tree
Showing 148 changed files with 1,722 additions and 623 deletions.
2 changes: 1 addition & 1 deletion Doc/c-api/bytearray.rst
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ Direct API functions
Resize the internal buffer of *bytearray* to *len*.
Failure is a ``-1`` return with an exception set.
.. versionchanged:: next
.. versionchanged:: 3.14
A negative *len* will now result in an exception being set and -1 returned.
Expand Down
2 changes: 1 addition & 1 deletion Doc/c-api/object.rst
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,7 @@ Object Protocol
Objects that are immortal in one CPython version are not guaranteed to
be immortal in another.
.. versionadded:: next
.. versionadded:: 3.14
.. c:function:: int PyUnstable_TryIncRef(PyObject *obj)
Expand Down
2 changes: 1 addition & 1 deletion Doc/library/asyncio-graph.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ a suspended *future*. These utilities and the underlying machinery
can be used from within a Python program or by external profilers
and debuggers.

.. versionadded:: next
.. versionadded:: 3.14


.. function:: print_call_graph(future=None, /, *, file=None, depth=1, limit=None)
Expand Down
2 changes: 1 addition & 1 deletion Doc/library/ctypes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2117,7 +2117,7 @@ Utility functions
executable file. It may be an empty string.

.. availability:: Windows, macOS, iOS, glibc, BSD libc, musl
.. versionadded:: next
.. versionadded:: 3.14

.. function:: FormatError([code])

Expand Down
2 changes: 1 addition & 1 deletion Doc/library/imaplib.rst
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ An :class:`IMAP4` instance has the following methods:
iteration, and public method to remain stable, but should not subclass,
instantiate, compare, or otherwise directly reference the class.

.. versionadded:: next
.. versionadded:: 3.14


.. method:: IMAP4.list([directory[, pattern]])
Expand Down
2 changes: 1 addition & 1 deletion Doc/library/inspect.rst
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ attributes (see :ref:`import-mod-attrs` for module attributes):

Add ``__builtins__`` attribute to functions.

.. versionchanged:: next
.. versionchanged:: 3.14

Add ``f_generator`` attribute to frames.

Expand Down
2 changes: 1 addition & 1 deletion Doc/library/os.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1683,7 +1683,7 @@ or `the MSDN <https://msdn.microsoft.com/en-us/library/z0kc8e3z.aspx>`_ on Windo
:meth:`io.BufferedIOBase.readinto`, :meth:`io.BufferedIOBase.read`, or
:meth:`io.TextIOBase.read`

.. versionadded:: next
.. versionadded:: 3.14


.. function:: sendfile(out_fd, in_fd, offset, count)
Expand Down
2 changes: 1 addition & 1 deletion Doc/library/shutil.rst
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,7 @@ file then shutil will silently fallback on using less efficient
.. versionchanged:: 3.14
Solaris now uses :func:`os.sendfile`.

.. versionchanged:: next
.. versionchanged:: 3.14
Copy-on-write or server-side copy may be used internally via
:func:`os.copy_file_range` on supported Linux filesystems.

Expand Down
2 changes: 1 addition & 1 deletion Doc/library/stdtypes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2871,7 +2871,7 @@ objects.
>>> (grow, len(grow))
(bytearray(b'abc\x00\x00'), 5)

.. versionadded:: next
.. versionadded:: 3.14

Since bytearray objects are sequences of integers (akin to a list), for a
bytearray object *b*, ``b[0]`` will be an integer, while ``b[0:1]`` will be
Expand Down
2 changes: 1 addition & 1 deletion Doc/library/sys.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1280,7 +1280,7 @@ always available. Unless explicitly noted otherwise, all variables are read-only
to this function) are not guaranteed to be immortal in future versions,
and vice versa for mortal objects.

.. versionadded:: next
.. versionadded:: 3.14

.. impl-detail::

Expand Down
6 changes: 3 additions & 3 deletions Doc/library/turtle.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1325,7 +1325,7 @@ Filling
>>> turtle.circle(80)
>>> turtle.end_fill()

.. versionadded:: next
.. versionadded:: 3.14


.. function:: begin_fill()
Expand Down Expand Up @@ -1713,7 +1713,7 @@ Special Turtle methods
... turtle.right(60)
... turtle.forward(100)

.. versionadded:: next
.. versionadded:: 3.14


.. function:: begin_poly()
Expand Down Expand Up @@ -2008,7 +2008,7 @@ Animation control
... fd(dist)
... rt(90)

.. versionadded:: next
.. versionadded:: 3.14


.. function:: delay(delay=None)
Expand Down
4 changes: 2 additions & 2 deletions Doc/library/uuid.rst
Original file line number Diff line number Diff line change
Expand Up @@ -297,15 +297,15 @@ The :mod:`uuid` module defines the special Nil and Max UUID values:
A special form of UUID that is specified to have all 128 bits set to zero
according to :rfc:`RFC 9562, §5.9 <9562#section-5.9>`.

.. versionadded:: next
.. versionadded:: 3.14


.. data:: MAX

A special form of UUID that is specified to have all 128 bits set to one
according to :rfc:`RFC 9562, §5.10 <9562#section-5.10>`.

.. versionadded:: next
.. versionadded:: 3.14


.. seealso::
Expand Down
2 changes: 1 addition & 1 deletion Doc/using/configure.rst
Original file line number Diff line number Diff line change
Expand Up @@ -626,7 +626,7 @@ also be used to improve performance.
`preserve_none <https://clang.llvm.org/docs/AttributeReference.html#preserve-none>`_
calling convention. For example, Clang 19 and newer supports this feature.

.. versionadded:: next
.. versionadded:: 3.14

.. option:: --without-mimalloc

Expand Down
4 changes: 2 additions & 2 deletions Include/patchlevel.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@
#define PY_MINOR_VERSION 14
#define PY_MICRO_VERSION 0
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_ALPHA
#define PY_RELEASE_SERIAL 4
#define PY_RELEASE_SERIAL 5

/* Version as a string */
#define PY_VERSION "3.14.0a4+"
#define PY_VERSION "3.14.0a5"
/*--end constants--*/


Expand Down
Loading

0 comments on commit 3ae9101

Please sign in to comment.