Skip to content

Commit

Permalink
update to 99327d124145d22cde8ff324754026c87f01a1f7 (nightly)
Browse files Browse the repository at this point in the history
  • Loading branch information
deadsnakes-issues-bot committed Jan 14, 2025
1 parent 23be9ce commit 7cc47da
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 2 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~a3-253-g99327d1241-1+jammy1) jammy; urgency=medium

* Update to v3.14.0a3-253-g99327d1241.

-- Anthony Sottile (deadsnakes) <[email protected]> Tue, 14 Jan 2025 08:52:50 +0000

python3.14 (3.14.0~a3-231-g6ecb620a0c-1+jammy1) jammy; urgency=medium

* Update to v3.14.0a3-231-g6ecb620a0c.
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~a3-253-g99327d1241-1+noble1) noble; urgency=medium

* Update to v3.14.0a3-253-g99327d1241.

-- Anthony Sottile (deadsnakes) <[email protected]> Tue, 14 Jan 2025 08:52:51 +0000

python3.14 (3.14.0~a3-231-g6ecb620a0c-1+noble1) noble; urgency=medium

* Update to v3.14.0a3-231-g6ecb620a0c.
Expand Down
2 changes: 1 addition & 1 deletion cpython
Submodule cpython updated 76 files
+16 −1 .github/workflows/reusable-change-detection.yml
+30 −0 Doc/library/ctypes.rst
+12 −6 Doc/library/fnmatch.rst
+94 −0 Doc/library/stdtypes.rst
+61 −0 Doc/library/unittest.rst
+57 −0 Doc/whatsnew/3.14.rst
+11 −1 Include/cpython/object.h
+2 −1 Include/internal/pycore_magic_number.h
+34 −24 Include/internal/pycore_opcode_metadata.h
+1 −0 Include/internal/pycore_uop_ids.h
+34 −34 Include/internal/pycore_uop_metadata.h
+21 −20 Include/opcode_ids.h
+22 −20 Lib/_opcode_metadata.py
+0 −1 Lib/test/libregrtest/pgo.py
+31 −16 Lib/test/support/__init__.py
+17 −0 Lib/test/test_asyncgen.py
+54 −0 Lib/test/test_asyncio/test_free_threading.py
+8 −6 Lib/test/test_capi/test_misc.py
+19 −0 Lib/test/test_capi/test_opt.py
+2 −1 Lib/test/test_code_module.py
+21 −1 Lib/test/test_ctypes/test_arrays.py
+0 −8 Lib/test/test_descr.py
+2 −2 Lib/test/test_dis.py
+1 −0 Lib/test/test_exceptions.py
+8 −6 Lib/test/test_faulthandler.py
+0 −5 Lib/test/test_gdb/util.py
+12 −0 Lib/test/test_generated_cases.py
+0 −6 Lib/test/test_importlib/resources/test_functional.py
+27 −0 Lib/test/test_metaclass.py
+1 −9 Lib/test/test_pyclbr.py
+11 −2 Lib/test/test_time.py
+9 −1 Lib/test/test_tkinter/test_misc.py
+8 −1 Lib/test/test_traceback.py
+0 −18 Lib/test/test_typing.py
+298 −9 Lib/test/test_unittest/test_case.py
+1 −1 Lib/test/test_unittest/test_loader.py
+5 −5 Lib/test/test_unittest/test_program.py
+8 −5 Lib/test/test_unittest/test_result.py
+7 −7 Lib/test/test_unittest/testmock/testasync.py
+7 −7 Lib/test/test_unittest/testmock/testcallable.py
+1 −1 Lib/test/test_unittest/testmock/testhelpers.py
+6 −6 Lib/test/test_unittest/testmock/testmagicmethods.py
+8 −8 Lib/test/test_unittest/testmock/testmock.py
+3 −3 Lib/test/test_unittest/testmock/testpatch.py
+0 −4 Lib/test/test_venv.py
+2 −0 Lib/tkinter/__init__.py
+130 −2 Lib/unittest/case.py
+1 −0 Lib/urllib/robotparser.py
+58 −27 Lib/uuid.py
+2 −0 Misc/NEWS.d/next/C_API/2025-01-12-12-19-51.gh-issue-128400.OwoIDw.rst
+1 −0 Misc/NEWS.d/next/Core_and_Builtins/2024-12-13-15-21-45.gh-issue-127773.E-DZR4.rst
+3 −0 Misc/NEWS.d/next/Core_and_Builtins/2025-01-09-11-46-57.gh-issue-124483.KRtBeQ.rst
+2 −0 Misc/NEWS.d/next/Core_and_Builtins/2025-01-13-12-48-30.gh-issue-128078.qOsl9B.rst
+2 −0 Misc/NEWS.d/next/Library/2024-12-21-11-12-50.gh-issue-128151.aq7vpG.rst
+2 −0 Misc/NEWS.d/next/Library/2025-01-04-11-32-46.gh-issue-128182.SJ2Zsa.rst
+1 −0 Misc/NEWS.d/next/Library/2025-01-08-03-09-29.gh-issue-128562.Mlv-yO.rst
+9 −0 Misc/NEWS.d/next/Library/2025-01-10-15-06-45.gh-issue-71339.EKnpzw.rst
+2 −0 Misc/NEWS.d/next/Tests/2025-01-13-01-29-08.gh-issue-128690.cPFVDb.rst
+137 −46 Modules/_ctypes/_ctypes.c
+44 −0 Modules/_ctypes/ctypes.h
+311 −0 Objects/clinic/exceptions.c.h
+22 −18 Objects/codeobject.c
+209 −89 Objects/exceptions.c
+11 −22 Objects/genobject.c
+2 −0 Objects/iterobject.c
+11 −1 Objects/typeobject.c
+54 −38 Python/bytecodes.c
+41 −33 Python/executor_cases.c.h
+65 −36 Python/generated_cases.c.h
+1 −1 Python/opcode_targets.h
+7 −0 Python/optimizer_bytecodes.c
+3 −1 Python/optimizer_cases.c.h
+4 −0 Python/pylifecycle.c
+0 −9 Python/specialize.c
+14 −4 Tools/cases_generator/analyzer.py
+88 −15 Tools/cases_generator/generators_common.py
2 changes: 1 addition & 1 deletion patches/tkinter-import.diff
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Subject: tkinter-import
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/Lib/tkinter/__init__.py b/Lib/tkinter/__init__.py
index d494c0c..eabd30c 100644
index 0baed8b..c8156b8 100644
--- a/Lib/tkinter/__init__.py
+++ b/Lib/tkinter/__init__.py
@@ -35,7 +35,10 @@
Expand Down

0 comments on commit 7cc47da

Please sign in to comment.