Skip to content

Commit

Permalink
update to ac918ccad707ab2d7dbb78a4796a7b8a874f334c (nightly)
Browse files Browse the repository at this point in the history
  • Loading branch information
deadsnakes-issues-bot committed Sep 12, 2024
1 parent 57f0c28 commit 9e7bb19
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 7 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-1464-gac918ccad7-1+jammy1) jammy; urgency=medium

* Update to v3.14.0a0-1464-gac918ccad7.

-- Anthony Sottile (deadsnakes) <[email protected]> Thu, 12 Sep 2024 08:52:54 +0000

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

* Update to v3.14.0a0-1450-g00ffdf2736.
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-1464-gac918ccad7-1+noble1) noble; urgency=medium

* Update to v3.14.0a0-1464-gac918ccad7.

-- Anthony Sottile (deadsnakes) <[email protected]> Thu, 12 Sep 2024 08:52:54 +0000

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

* Update to v3.14.0a0-1450-g00ffdf2736.
Expand Down
2 changes: 1 addition & 1 deletion cpython
Submodule cpython updated 72 files
+0 −2 .gitattributes
+4 −4 .pre-commit-config.yaml
+19 −3 Android/testbed/app/src/main/python/main.py
+15 −5 Doc/glossary.rst
+19 −2 Doc/howto/annotations.rst
+7 −7 Doc/library/__future__.rst
+349 −0 Doc/library/annotationlib.rst
+47 −0 Doc/library/asyncio-task.rst
+13 −56 Doc/library/inspect.rst
+1 −0 Doc/library/python.rst
+111 −2 Doc/library/typing.rst
+39 −7 Doc/reference/compound_stmts.rst
+98 −6 Doc/reference/datamodel.rst
+15 −8 Doc/reference/executionmodel.rst
+14 −12 Doc/reference/simple_stmts.rst
+3 −1 Doc/whatsnew/3.14.rst
+1 −1 Lib/dataclasses.py
+4 −2 Lib/importlib/resources/readers.py
+1 −3 Lib/test/pickletester.py
+32 −0 Lib/test/test_compile.py
+19 −0 Lib/test/test_dataclasses/__init__.py
+5 −5 Lib/test/test_float.py
+0 −0 Lib/test/test_importlib/resources/data01/__init__.py
+ Lib/test/test_importlib/resources/data01/binary.file
+0 −0 Lib/test/test_importlib/resources/data01/subdirectory/__init__.py
+0 −1 Lib/test/test_importlib/resources/data01/subdirectory/binary.file
+ Lib/test/test_importlib/resources/data01/utf-16.file
+0 −1 Lib/test/test_importlib/resources/data01/utf-8.file
+0 −0 Lib/test/test_importlib/resources/data02/__init__.py
+0 −0 Lib/test/test_importlib/resources/data02/one/__init__.py
+0 −1 Lib/test/test_importlib/resources/data02/one/resource1.txt
+0 −1 Lib/test/test_importlib/resources/data02/subdirectory/subsubdir/resource.txt
+0 −0 Lib/test/test_importlib/resources/data02/two/__init__.py
+0 −1 Lib/test/test_importlib/resources/data02/two/resource2.txt
+0 −0 Lib/test/test_importlib/resources/data03/__init__.py
+0 −0 Lib/test/test_importlib/resources/data03/namespace/portion1/__init__.py
+0 −0 Lib/test/test_importlib/resources/data03/namespace/portion2/__init__.py
+0 −0 Lib/test/test_importlib/resources/data03/namespace/resource1.txt
+ Lib/test/test_importlib/resources/namespacedata01/binary.file
+0 −1 Lib/test/test_importlib/resources/namespacedata01/subdirectory/binary.file
+ Lib/test/test_importlib/resources/namespacedata01/utf-16.file
+0 −1 Lib/test/test_importlib/resources/namespacedata01/utf-8.file
+5 −10 Lib/test/test_importlib/resources/test_contents.py
+62 −40 Lib/test/test_importlib/resources/test_files.py
+21 −9 Lib/test/test_importlib/resources/test_functional.py
+5 −10 Lib/test/test_importlib/resources/test_open.py
+1 −4 Lib/test/test_importlib/resources/test_path.py
+6 −9 Lib/test/test_importlib/resources/test_read.py
+20 −28 Lib/test/test_importlib/resources/test_reader.py
+27 −31 Lib/test/test_importlib/resources/test_resource.py
+0 −53 Lib/test/test_importlib/resources/update-zips.py
+57 −15 Lib/test/test_importlib/resources/util.py
+10 −16 Lib/test/test_importlib/resources/zip.py
+0 −0 Lib/test/test_importlib/resources/zipdata01/__init__.py
+ Lib/test/test_importlib/resources/zipdata01/ziptestdata.zip
+0 −0 Lib/test/test_importlib/resources/zipdata02/__init__.py
+ Lib/test/test_importlib/resources/zipdata02/ziptestdata.zip
+25 −2 Lib/test/test_memoryview.py
+6 −3 Lib/test/test_signal.py
+1 −1 Lib/zipfile/_path/__init__.py
+2 −10 Lib/zipimport.py
+0 −15 Makefile.pre.in
+4 −0 Misc/NEWS.d/next/Core_and_Builtins/2024-09-10-13-27-16.gh-issue-77894.ZC-Olu.rst
+1 −0 Misc/NEWS.d/next/Core_and_Builtins/2024-09-11-15-48-36.gh-issue-123958.5VW2r0.rst
+3 −0 Misc/NEWS.d/next/Library/2024-08-15-09-45-34.gh-issue-121735._1q0qf.rst
+1 −1 Misc/NEWS.d/next/Library/2024-08-23-22-01-30.gh-issue-76960.vsANPu.rst
+2 −0 Misc/NEWS.d/next/Library/2024-09-11-13-33-19.gh-issue-123935.fRZ_56.rst
+211 −147 Modules/_cursesmodule.c
+27 −28 Objects/memoryobject.c
+11 −0 Programs/_freeze_module.c
+21 −0 Python/ast_opt.c
+16 −22 Python/codegen.c
2 changes: 1 addition & 1 deletion patches/destshared-location.patch
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Forwarded: no
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile.pre.in b/Makefile.pre.in
index 2ef3541..38bb241 100644
index 32757b6..78eac77 100644
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -169,7 +169,7 @@ EXT_SUFFIX= @EXT_SUFFIX@
Expand Down
2 changes: 1 addition & 1 deletion patches/distutils-install-layout.diff
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ index 035913c..c23db4f 100644
else:
# other platforms
diff --git a/Makefile.pre.in b/Makefile.pre.in
index 77455c0..be66184 100644
index 579b3fd..d7bca49 100644
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -159,7 +159,7 @@ WHEEL_PKG_DIR= @WHEEL_PKG_DIR@
Expand Down
2 changes: 1 addition & 1 deletion patches/multiarch.diff
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ index 9842fd0..8d95ec3 100644
srcdir = _CONFIG_VARS.get('srcdir', _PROJECT_BASE)
if os.name == 'posix':
diff --git a/Makefile.pre.in b/Makefile.pre.in
index be66184..42242d7 100644
index d7bca49..ba5cafe 100644
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -1769,6 +1769,7 @@ Python/interpconfig.o: $(srcdir)/Python/interpconfig.c $(srcdir)/Python/config_c
Expand Down
2 changes: 1 addition & 1 deletion patches/reproducible-buildinfo.diff
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Subject: reproducible-buildinfo
1 file changed, 2 insertions(+)

diff --git a/Makefile.pre.in b/Makefile.pre.in
index 42242d7..46c2e98 100644
index ba5cafe..e1b0ac8 100644
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -1727,6 +1727,8 @@ Modules/getbuildinfo.o: $(PARSER_OBJS) \
Expand Down
4 changes: 2 additions & 2 deletions patches/sysconfigdata-name.patch
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ index 8d95ec3..344a765 100644

def _init_posix(vars):
diff --git a/Makefile.pre.in b/Makefile.pre.in
index 46c2e98..2ef3541 100644
index e1b0ac8..32757b6 100644
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -2628,8 +2628,10 @@ libinstall: all $(srcdir)/Modules/xxmodule.c
@@ -2613,8 +2613,10 @@ libinstall: all $(srcdir)/Modules/xxmodule.c
esac; \
done; \
done
Expand Down

0 comments on commit 9e7bb19

Please sign in to comment.