Skip to content

Commit

Permalink
update to 3c770e3f0978d825c5ebea98fcd654660e7e135f (nightly)
Browse files Browse the repository at this point in the history
  • Loading branch information
deadsnakes-issues-bot committed Nov 22, 2024
1 parent a3f7447 commit bb1291c
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
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~a2-45-g3c770e3f09-1+jammy1) jammy; urgency=medium

* Update to v3.14.0a2-45-g3c770e3f09.

-- Anthony Sottile (deadsnakes) <[email protected]> Fri, 22 Nov 2024 08:54:39 +0000

python3.14 (3.14.0~a2-24-g1629d2ca56-1+jammy1) jammy; urgency=medium

* Update to v3.14.0a2-24-g1629d2ca56.
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~a2-45-g3c770e3f09-1+noble1) noble; urgency=medium

* Update to v3.14.0a2-45-g3c770e3f09.

-- Anthony Sottile (deadsnakes) <[email protected]> Fri, 22 Nov 2024 08:54:40 +0000

python3.14 (3.14.0~a2-24-g1629d2ca56-1+noble1) noble; urgency=medium

* Update to v3.14.0a2-24-g1629d2ca56.
Expand Down
2 changes: 1 addition & 1 deletion cpython
Submodule cpython updated 66 files
+33 −3 Doc/library/argparse.rst
+48 −15 Doc/library/ctypes.rst
+6 −4 Doc/library/locale.rst
+5 −0 Doc/library/urllib.request.rst
+2 −1 Include/cpython/code.h
+11 −0 Include/internal/pycore_dict.h
+0 −18 Include/internal/pycore_gc.h
+1 −0 Include/internal/pycore_global_objects_fini_generated.h
+1 −0 Include/internal/pycore_global_strings.h
+0 −2 Include/internal/pycore_modsupport.h
+15 −0 Include/internal/pycore_object.h
+15 −1 Include/internal/pycore_pymem.h
+9 −0 Include/internal/pycore_pystate.h
+1 −0 Include/internal/pycore_runtime_init_generated.h
+10 −0 Include/internal/pycore_typeobject.h
+4 −0 Include/internal/pycore_unicodeobject_generated.h
+16 −6 Lib/mimetypes.py
+20 −16 Lib/nturl2path.py
+7 −4 Lib/pickletools.py
+8 −0 Lib/test/support/strace_helper.py
+45 −0 Lib/test/test__locale.py
+30 −0 Lib/test/test_free_threading/test_code.py
+64 −0 Lib/test/test_free_threading/test_dict.py
+21 −1 Lib/test/test_generators.py
+5 −0 Lib/test/test_ntpath.py
+84 −1 Lib/test/test_opcache.py
+2 −2 Lib/test/test_os.py
+82 −0 Lib/test/test_pickletools.py
+2 −0 Lib/test/test_posixpath.py
+7 −4 Lib/test/test_urllib.py
+3 −0 Lib/urllib/request.py
+1 −0 Misc/NEWS.d/next/Core_and_Builtins/2024-09-25-21-50-23.gh-issue-124470.pFr3_d.rst
+2 −0 Misc/NEWS.d/next/Core_and_Builtins/2024-11-07-21-48-23.gh-issue-126091.ETaRGE.rst
+4 −0 Misc/NEWS.d/next/Core_and_Builtins/2024-11-19-21-49-58.gh-issue-127020.5vvI17.rst
+3 −0 Misc/NEWS.d/next/Library/2024-11-12-13-14-47.gh-issue-126727.5Eqfqd.rst
+3 −0 Misc/NEWS.d/next/Library/2024-11-12-20-05-09.gh-issue-126601.Nj7bA9.rst
+1 −0 Misc/NEWS.d/next/Library/2024-11-13-19-15-18.gh-issue-126780.ZZqJvI.rst
+2 −0 Misc/NEWS.d/next/Library/2024-11-18-22-02-47.gh-issue-118761.GQKD_J.rst
+2 −0 Misc/NEWS.d/next/Library/2024-11-20-11-37-08.gh-issue-126316.ElkZmE.rst
+3 −0 Misc/NEWS.d/next/Library/2024-11-20-16-58-59.gh-issue-126997.0PI41Y.rst
+2 −0 Misc/NEWS.d/next/Library/2024-11-22-02-31-55.gh-issue-126766.jfkhBH.rst
+2 −0 Misc/NEWS.d/next/Library/2024-11-22-03-40-02.gh-issue-127078.gI_PaP.rst
+1 −0 Misc/NEWS.d/next/Tests/2024-11-21-02-03-48.gh-issue-127076.a3avV1.rst
+41 −24 Modules/_localemodule.c
+77 −11 Modules/clinic/grpmodule.c.h
+20 −11 Modules/grpmodule.c
+55 −29 Objects/codeobject.c
+190 −42 Objects/dictobject.c
+2 −0 Objects/funcobject.c
+12 −6 Objects/genobject.c
+1 −1 Objects/object.c
+49 −15 Objects/obmalloc.c
+18 −0 Objects/typeobject.c
+28 −15 Python/bytecodes.c
+2 −1 Python/ceval.c
+4 −10 Python/ceval_gil.c
+30 −11 Python/executor_cases.c.h
+26 −25 Python/fileutils.c
+39 −35 Python/gc_free_threading.c
+28 −15 Python/generated_cases.c.h
+2 −5 Python/instrumentation.c
+12 −2 Python/optimizer.c
+46 −52 Python/pystate.c
+91 −84 Python/specialize.c
+14 −0 Tools/c-analyzer/cpython/_analyzer.py
+3 −0 Tools/cases_generator/analyzer.py

0 comments on commit bb1291c

Please sign in to comment.