Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d57cfbe

Browse files
committed
Merge branch 'main' into feature/os.timerfd_xxx
# Conflicts: # Modules/clinic/posixmodule.c.h
2 parents 3366d58 + c1e2f3b commit d57cfbe

149 files changed

Lines changed: 3498 additions & 732 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,8 @@ PCbuild/readme.txt dos
6666
[attr]generated linguist-generated=true diff=generated
6767

6868
**/clinic/*.c.h generated
69+
**/clinic/*.cpp.h generated
70+
**/clinic/*.h.h generated
6971
*_db.h generated
7072
Doc/data/stable_abi.dat generated
7173
Doc/library/token-list.inc generated

Doc/library/ast.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -585,7 +585,7 @@ Expressions
585585
:class:`Name` or :class:`Attribute` object. Of the arguments:
586586

587587
* ``args`` holds a list of the arguments passed by position.
588-
* ``keywords`` holds a list of :class:`keyword` objects representing
588+
* ``keywords`` holds a list of :class:`.keyword` objects representing
589589
arguments passed by keyword.
590590

591591
When creating a ``Call`` node, ``args`` and ``keywords`` are required, but
@@ -2024,7 +2024,7 @@ Function and class definitions
20242024

20252025
* ``name`` is a raw string for the class name
20262026
* ``bases`` is a list of nodes for explicitly specified base classes.
2027-
* ``keywords`` is a list of :class:`keyword` nodes, principally for 'metaclass'.
2027+
* ``keywords`` is a list of :class:`.keyword` nodes, principally for 'metaclass'.
20282028
Other keywords will be passed to the metaclass, as per `PEP-3115
20292029
<https://peps.python.org/pep-3115/>`_.
20302030
* ``body`` is a list of nodes representing the code within the class

Doc/whatsnew/3.13.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -843,6 +843,9 @@ Build Changes
843843
:ref:`debug build <debug-build>`.
844844
(Contributed by Victor Stinner in :gh:`108634`.)
845845

846+
* Building CPython now requires a compiler with support for the C11 atomic
847+
library, GCC built-in atomic functions, or MSVC interlocked intrinsics.
848+
846849

847850
C API Changes
848851
=============

0 commit comments

Comments
 (0)