Skip to content

Commit

Permalink
update to 84f07c3a4cbcfe488ccfb4030571be0bc4de7e45 (nightly)
Browse files Browse the repository at this point in the history
  • Loading branch information
deadsnakes-issues-bot committed Nov 19, 2024
1 parent 8acf1a7 commit 3e864b7
Show file tree
Hide file tree
Showing 4 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~a1-405-g84f07c3a4c-1+jammy1) jammy; urgency=medium

* Update to v3.14.0a1-405-g84f07c3a4c.

-- Anthony Sottile (deadsnakes) <asottile+deadsnakes@umich.edu> Tue, 19 Nov 2024 08:55:04 +0000

python3.14 (3.14.0~a1-392-g3938fd60c0-1+jammy1) jammy; urgency=medium

* Update to v3.14.0a1-392-g3938fd60c0.
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~a1-405-g84f07c3a4c-1+noble1) noble; urgency=medium

* Update to v3.14.0a1-405-g84f07c3a4c.

-- Anthony Sottile (deadsnakes) <asottile+deadsnakes@umich.edu> Tue, 19 Nov 2024 08:55:04 +0000

python3.14 (3.14.0~a1-392-g3938fd60c0-1+noble1) noble; urgency=medium

* Update to v3.14.0a1-392-g3938fd60c0.
Expand Down
2 changes: 1 addition & 1 deletion cpython
Submodule cpython updated 54 files
+7 −0 Doc/library/codecs.rst
+14 −0 Doc/whatsnew/3.14.rst
+2 −0 Include/cpython/pystats.h
+3 −4 Include/internal/pycore_backoff.h
+0 −2 Include/internal/pycore_dict.h
+3 −0 Include/internal/pycore_frame.h
+9 −2 Include/internal/pycore_gc.h
+2 −2 Include/internal/pycore_object.h
+1 −1 Include/internal/pycore_pystate.h
+1 −0 Include/internal/pycore_runtime_init.h
+48 −15 InternalDocs/garbage_collector.md
+17 −14 Lib/encodings/__init__.py
+36 −0 Lib/encodings/_win_cp_codecs.py
+9 −0 Lib/mimetypes.py
+3 −2 Lib/site.py
+0 −4 Lib/test/libregrtest/mypy.ini
+13 −7 Lib/test/libregrtest/run_workers.py
+15 −0 Lib/test/test_buffer.py
+98 −96 Lib/test/test_capi/test_opt.py
+97 −21 Lib/test/test_codecs.py
+0 −109 Lib/test/test_dict.py
+14 −19 Lib/test/test_gc.py
+8 −0 Lib/test/test_mimetypes.py
+3 −3 Lib/test/test_os.py
+29 −0 Lib/test/test_re.py
+27 −0 Lib/test/test_socket.py
+4 −0 Misc/NEWS.d/next/Core_and_Builtins/2024-11-06-15-22-34.gh-issue-126491.n9VyZc.rst
+2 −0 Misc/NEWS.d/next/Core_and_Builtins/2024-11-13-17-18-13.gh-issue-126795._JBX9e.rst
+2 −0 Misc/NEWS.d/next/Library/2023-10-26-16-36-22.gh-issue-101955.Ixu3IF.rst
+2 −0 Misc/NEWS.d/next/Library/2024-11-14-22-25-49.gh-issue-67877.G9hw0w.rst
+2 −0 Misc/NEWS.d/next/Library/2024-11-18-15-33-25.gh-issue-85957.8gT3B-.rst
+2 −0 Misc/NEWS.d/next/Tests/2024-11-17-16-56-48.gh-issue-126909.60VTxW.rst
+1 −0 Misc/NEWS.d/next/Windows/2024-09-07-15-16-24.gh-issue-123803.J9VNQU.rst
+1 −0 Misc/NEWS.d/next/Windows/2024-11-16-22-08-41.gh-issue-126911.HchCZZ.rst
+43 −1 Modules/_sre/clinic/sre.c.h
+127 −5 Modules/_sre/sre.c
+16 −1 Modules/_sre/sre.h
+37 −7 Modules/_sre/sre_lib.h
+8 −1 Modules/_testinternalcapi.c
+1 −1 Modules/getpath.py
+4 −1 Modules/socketmodule.c
+19 −96 Objects/dictobject.c
+0 −2 Objects/moduleobject.c
+3 −3 Objects/typeobject.c
+0 −4 Python/bytecodes.c
+1 −0 Python/ceval.c
+1 −2 Python/crossinterp.c
+0 −4 Python/executor_cases.c.h
+215 −62 Python/gc.c
+1 −8 Python/gc_free_threading.c
+0 −4 Python/generated_cases.c.h
+8 −12 Python/pystate.c
+2 −0 Python/specialize.c
+4 −1 Tools/scripts/summarize_stats.py
4 changes: 2 additions & 2 deletions patches/distutils-install-layout.diff
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ index 8aed6c0..2332e72 100644
object.__name__ not in ('xml.etree', 'test.test_pydoc.pydoc_mod')):
if docloc.startswith(("http://", "https://")):
diff --git a/Lib/site.py b/Lib/site.py
index 07a6361..e6e151b 100644
index 54f07ab..071e4c5 100644
--- a/Lib/site.py
+++ b/Lib/site.py
@@ -7,12 +7,18 @@
Expand Down Expand Up @@ -213,7 +213,7 @@ index 8d94ba3..0abbe39 100644
CONFINCLUDEPY= $(CONFINCLUDEDIR)/python$(LDVERSION)

diff --git a/Modules/getpath.py b/Modules/getpath.py
index 1f1bfcb..411b6d7 100644
index 1c1eb6c..d3fbb83 100644
--- a/Modules/getpath.py
+++ b/Modules/getpath.py
@@ -179,9 +179,9 @@
Expand Down

0 comments on commit 3e864b7

Please sign in to comment.