Skip to content

Commit

Permalink
update to 2313f8421080ceb3343c6f5d291279adea85e073 (nightly)
Browse files Browse the repository at this point in the history
  • Loading branch information
deadsnakes-issues-bot committed Nov 16, 2024
1 parent 4b54140 commit b40095d
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 16 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-385-g2313f84210-1+jammy1) jammy; urgency=medium

* Update to v3.14.0a1-385-g2313f84210.

-- Anthony Sottile (deadsnakes) <[email protected]> Sat, 16 Nov 2024 08:53:01 +0000

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

* Update to v3.14.0a1-371-gd9e251223e.
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-385-g2313f84210-1+noble1) noble; urgency=medium

* Update to v3.14.0a1-385-g2313f84210.

-- Anthony Sottile (deadsnakes) <[email protected]> Sat, 16 Nov 2024 08:53:02 +0000

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

* Update to v3.14.0a1-371-gd9e251223e.
Expand Down
2 changes: 1 addition & 1 deletion cpython
Submodule cpython updated 35 files
+5 −4 Doc/c-api/marshal.rst
+46 −18 Doc/library/marshal.rst
+12 −0 Doc/library/platform.rst
+9 −0 Doc/library/urllib.parse.rst
+6 −3 Doc/library/uuid.rst
+8 −8 Doc/reference/simple_stmts.rst
+2 −10 Doc/using/configure.rst
+18 −0 Doc/whatsnew/3.14.rst
+1 −1 Include/marshal.h
+13 −3 Lib/calendar.py
+14 −1 Lib/platform.py
+13 −1 Lib/test/test_calendar.py
+3 −10 Lib/test/test_capi/test_object.py
+123 −0 Lib/test/test_ctypes/test_dlerror.py
+38 −0 Lib/test/test_gc.py
+24 −3 Lib/test/test_marshal.py
+32 −0 Lib/test/test_platform.py
+3 −0 Misc/NEWS.d/next/Build/2024-11-13-15-47-09.gh-issue-126691.ni4K-b.rst
+2 −0 Misc/NEWS.d/next/C_API/2024-11-07-20-24-58.gh-issue-126554.ri12eb.rst
+2 −0 Misc/NEWS.d/next/Core_and_Builtins/2024-11-02-14-43-46.gh-issue-126312.LMHzLT.rst
+1 −0 Misc/NEWS.d/next/Library/2024-08-01-11-15-55.gh-issue-122549.ztV4Kz.rst
+2 −0 Misc/NEWS.d/next/Library/2024-11-06-18-30-50.gh-issue-126476.F1wh3c.rst
+2 −0 Misc/NEWS.d/next/Library/2024-11-14-13-16-20.gh-issue-125063.kJ-WnH.rst
+3 −0 Misc/NEWS.d/next/Windows/2024-11-12-22-31-13.gh-issue-118973._lfxW6.rst
+64 −26 Modules/_ctypes/_ctypes.c
+31 −5 Modules/_ctypes/callproc.c
+1 −0 Programs/_freeze_module.c
+9 −1 Python/gc.c
+14 −5 Python/gc_free_threading.c
+31 −15 Python/marshal.c
+1 −1 Tools/msi/freethreaded/freethreaded_files.wxs
+0 −6 Tools/wasm/README.md
+8 −2 Tools/wasm/emscripten/node_pre.js
+13 −97 configure
+14 −59 configure.ac
6 changes: 3 additions & 3 deletions patches/disable-sem-check.diff
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ Subject: disable-sem-check
1 file changed, 22 insertions(+), 12 deletions(-)

diff --git a/configure.ac b/configure.ac
index eb0347e..77d8143 100644
index 15acd7c..abb70a2 100644
--- a/configure.ac
+++ b/configure.ac
@@ -6042,12 +6042,17 @@ AC_CACHE_CHECK([whether POSIX semaphores are enabled], [ac_cv_posix_semaphores_e
@@ -6002,12 +6002,17 @@ AC_CACHE_CHECK([whether POSIX semaphores are enabled], [ac_cv_posix_semaphores_e
[ac_cv_posix_semaphores_enabled=no],
[ac_cv_posix_semaphores_enabled=yes])
)
Expand All @@ -36,7 +36,7 @@ index eb0347e..77d8143 100644

dnl Multiprocessing check for broken sem_getvalue
AC_CACHE_CHECK([for broken sem_getvalue], [ac_cv_broken_sem_getvalue],
@@ -6079,12 +6084,17 @@ AC_CACHE_CHECK([for broken sem_getvalue], [ac_cv_broken_sem_getvalue],
@@ -6039,12 +6044,17 @@ AC_CACHE_CHECK([for broken sem_getvalue], [ac_cv_broken_sem_getvalue],
[ac_cv_broken_sem_getvalue=yes],
[ac_cv_broken_sem_getvalue=yes])
)
Expand Down
16 changes: 8 additions & 8 deletions patches/distutils-install-layout.diff
Original file line number Diff line number Diff line change
Expand Up @@ -229,10 +229,10 @@ index 1f1bfcb..411b6d7 100644
VENV_LANDMARK = 'pyvenv.cfg'
ZIP_LANDMARK = f'{platlibdir}/python{VERSION_MAJOR}{VERSION_MINOR}{ABI_THREAD}.zip'
diff --git a/configure b/configure
index b1ced31..9750250 100755
index 5b44a3d..0ea0990 100755
--- a/configure
+++ b/configure
@@ -25060,11 +25060,11 @@ fi
@@ -24984,11 +24984,11 @@ fi



Expand All @@ -246,7 +246,7 @@ index b1ced31..9750250 100755

PLATLIBDIR="lib"
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for --with-platlibdir" >&5
@@ -25083,7 +25083,7 @@ then
@@ -25007,7 +25007,7 @@ then
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
printf "%s\n" "yes" >&6; }
PLATLIBDIR="$withval"
Expand All @@ -255,7 +255,7 @@ index b1ced31..9750250 100755
else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
printf "%s\n" "no" >&6; }
@@ -25097,9 +25097,9 @@ fi
@@ -25021,9 +25021,9 @@ fi


if test x$PLATFORM_TRIPLET = x; then
Expand All @@ -268,10 +268,10 @@ index b1ced31..9750250 100755


diff --git a/configure.ac b/configure.ac
index 3a55cbc..b6d04aa 100644
index 7904f89..6dd4bd1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -6238,11 +6238,11 @@ fi
@@ -6198,11 +6198,11 @@ fi


AC_SUBST([BINLIBDEST])
Expand All @@ -285,7 +285,7 @@ index 3a55cbc..b6d04aa 100644
AC_SUBST([PLATLIBDIR])
PLATLIBDIR="lib"
AC_MSG_CHECKING([for --with-platlibdir])
@@ -6261,7 +6261,7 @@ if test -n "$withval" -a "$withval" != yes -a "$withval" != no
@@ -6221,7 +6221,7 @@ if test -n "$withval" -a "$withval" != yes -a "$withval" != no
then
AC_MSG_RESULT([yes])
PLATLIBDIR="$withval"
Expand All @@ -294,7 +294,7 @@ index 3a55cbc..b6d04aa 100644
else
AC_MSG_RESULT([no])
fi],
@@ -6271,9 +6271,9 @@ fi],
@@ -6231,9 +6231,9 @@ fi],
dnl define LIBPL after ABIFLAGS and LDVERSION is defined.
AC_SUBST([PY_ENABLE_SHARED])
if test x$PLATFORM_TRIPLET = x; then
Expand Down
6 changes: 3 additions & 3 deletions patches/link-opt.diff
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ Subject: link-opt
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/configure.ac b/configure.ac
index b6d04aa..eb0347e 100644
index 6dd4bd1..15acd7c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3456,8 +3456,8 @@ then
@@ -3416,8 +3416,8 @@ then
LDSHARED='$(CC) -shared'
LDCXXSHARED='$(CXX) -shared';;
Linux*|GNU*|QNX*|VxWorks*|Haiku*)
Expand All @@ -23,7 +23,7 @@ index b6d04aa..eb0347e 100644
FreeBSD*)
if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]]
then
@@ -3569,7 +3569,7 @@ then
@@ -3529,7 +3529,7 @@ then
LINKFORSHARED="-Wl,-E -Wl,+s";;
# LINKFORSHARED="-Wl,-E -Wl,+s -Wl,+b\$(BINLIBDEST)/lib-dynload";;
Linux-android*) LINKFORSHARED="-pie -Xlinker -export-dynamic";;
Expand Down
2 changes: 1 addition & 1 deletion patches/sysconfigdata-name.patch
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ index 7d5a283..3db63c6 100644
@ # If app store compliance has been configured, apply the patch to the
@ # installed library code. The patch has been previously validated against
diff --git a/configure.ac b/configure.ac
index 77d8143..7fe98ca 100644
index abb70a2..1d23ab4 100644
--- a/configure.ac
+++ b/configure.ac
@@ -164,7 +164,7 @@ AC_ARG_WITH([build-python],
Expand Down

0 comments on commit b40095d

Please sign in to comment.