Skip to content

Commit

Permalink
update to 67f6e08147bc005e460d82fcce85bf5d56009cf5 (nightly)
Browse files Browse the repository at this point in the history
  • Loading branch information
deadsnakes-issues-bot committed Oct 14, 2024
1 parent 2ff2069 commit 612fdf9
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 3 deletions.
6 changes: 6 additions & 0 deletions changelogs/nightly/jammy
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
python3.14 (3.14.0~a0-1940-g67f6e08147-1+jammy1) jammy; urgency=medium

* Update to v3.14.0a0-1940-g67f6e08147.

-- Anthony Sottile (deadsnakes) <[email protected]> Mon, 14 Oct 2024 08:53:59 +0000

python3.14 (3.14.0~a0-1925-gce740d4624-1+jammy1) jammy; urgency=medium

* Update to v3.14.0a0-1925-gce740d4624.
Expand Down
6 changes: 6 additions & 0 deletions changelogs/nightly/noble
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
python3.14 (3.14.0~a0-1940-g67f6e08147-1+noble1) noble; urgency=medium

* Update to v3.14.0a0-1940-g67f6e08147.

-- Anthony Sottile (deadsnakes) <[email protected]> Mon, 14 Oct 2024 08:53:59 +0000

python3.14 (3.14.0~a0-1925-gce740d4624-1+noble1) noble; urgency=medium

* Update to v3.14.0a0-1925-gce740d4624.
Expand Down
2 changes: 1 addition & 1 deletion cpython
Submodule cpython updated 38 files
+2 −0 .github/CODEOWNERS
+5 −0 Doc/c-api/long.rst
+17 −0 Doc/library/decimal.rst
+10 −0 Doc/library/fractions.rst
+4 −6 Doc/library/string.rst
+2 −2 Doc/tutorial/controlflow.rst
+8 −8 Doc/tutorial/venv.rst
+10 −0 Doc/whatsnew/3.14.rst
+4 −3 Include/internal/pycore_lock.h
+3 −0 Include/internal/pycore_stackref.h
+15 −0 Lib/_pydecimal.py
+0 −25 Lib/_weakrefset.py
+5 −7 Lib/argparse.py
+24 −1 Lib/fractions.py
+2 −2 Lib/pathlib/_local.py
+30 −1 Lib/test/test_argparse.py
+23 −0 Lib/test/test_decimal.py
+42 −7 Lib/test/test_fractions.py
+9 −0 Lib/test/test_pathlib/test_pathlib.py
+49 −149 Lib/weakref.py
+1 −0 Misc/NEWS.d/next/Library/2024-04-19-05-58-50.gh-issue-117766.J3xepp.rst
+2 −0 Misc/NEWS.d/next/Library/2024-07-15-19-25-25.gh-issue-121798.GmuBDu.rst
+2 −0 Misc/NEWS.d/next/Library/2024-07-15-19-34-56.gh-issue-121797.qDqj59.rst
+4 −0 Misc/NEWS.d/next/Library/2024-10-08-21-17-16.gh-issue-125069.0RP0Mx.rst
+2 −0 Misc/NEWS.d/next/Library/2024-10-10-20-39-57.gh-issue-125243.eUbbtu.rst
+1 −0 Misc/NEWS.d/next/Library/2024-10-11-16-19-46.gh-issue-89967.vhWUOR.rst
+46 −0 Modules/_decimal/_decimal.c
+13 −0 Modules/_decimal/docstrings.h
+33 −118 Modules/_threadmodule.c
+25 −19 Modules/_zoneinfo.c
+60 −1 Modules/clinic/_zoneinfo.c.h
+20 −20 Python/bytecodes.c
+20 −20 Python/executor_cases.c.h
+20 −20 Python/generated_cases.c.h
+28 −3 Python/lock.c
+5 −5 Python/thread_pthread_stubs.h
+1 −0 Tools/cases_generator/analyzer.py
+1 −0 Tools/cases_generator/generators_common.py
2 changes: 1 addition & 1 deletion patches/argparse-no-shutil.diff
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Subject: argparse-no-shutil
1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/Lib/argparse.py b/Lib/argparse.py
index 2170423..6a05326 100644
index c1922e9..b5b8a6b 100644
--- a/Lib/argparse.py
+++ b/Lib/argparse.py
@@ -176,9 +176,12 @@ def __init__(self,
Expand Down
2 changes: 1 addition & 1 deletion patches/lib-argparse.diff
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Subject: lib-argparse
1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/Lib/argparse.py b/Lib/argparse.py
index 550415d..2170423 100644
index fa9f521..c1922e9 100644
--- a/Lib/argparse.py
+++ b/Lib/argparse.py
@@ -89,7 +89,16 @@
Expand Down

0 comments on commit 612fdf9

Please sign in to comment.