Skip to content

Commit a07993d

Browse files
committed
Update Python version to v3.8.8.
1 parent e76c558 commit a07993d

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ BUILD_NUMBER=custom
3030
MACOSX_DEPLOYMENT_TARGET=10.8
3131

3232
# Version of packages that will be compiled by this meta-package
33-
PYTHON_VERSION=3.8.7
33+
PYTHON_VERSION=3.8.8
3434
PYTHON_VER=$(basename $(PYTHON_VERSION))
3535

3636
OPENSSL_VERSION_NUMBER=1.1.1

patch/Python/Python.patch

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
diff --git a/Doc/library/os.rst b/Doc/library/os.rst
2-
index 1a6ff40bf0..f77124656f 100644
2+
index 45213a664e..2acf3a582a 100644
33
--- a/Doc/library/os.rst
44
+++ b/Doc/library/os.rst
55
@@ -3147,6 +3147,13 @@
@@ -17,7 +17,7 @@ index 1a6ff40bf0..f77124656f 100644
1717
.. data:: MFD_CLOEXEC
1818
MFD_ALLOW_SEALING
1919
diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst
20-
index a93a6c186f..6d6640eff4 100644
20+
index 7ce274652d..fda0d3ac5a 100644
2121
--- a/Doc/library/subprocess.rst
2222
+++ b/Doc/library/subprocess.rst
2323
@@ -25,6 +25,11 @@
@@ -223,7 +223,7 @@ index 56285b5ff8..f78a152ade 100644
223223
def three_way_cmp(x, y):
224224
"""Return -1 if x < y, 0 if x == y and 1 if x > y"""
225225
diff --git a/Lib/ctypes/test/test_parameters.py b/Lib/ctypes/test/test_parameters.py
226-
index e4c25fd880..811af9dfd6 100644
226+
index 38af7ac13d..db0d4986d6 100644
227227
--- a/Lib/ctypes/test/test_parameters.py
228228
+++ b/Lib/ctypes/test/test_parameters.py
229229
@@ -140,7 +140,7 @@
@@ -11404,10 +11404,10 @@ index 9fa21cca38..e346fb4390 100644
1140411404
return f'{userbase}/lib/python{version[0]}.{version[1]}/site-packages'
1140511405

1140611406
diff --git a/Lib/subprocess.py b/Lib/subprocess.py
11407-
index 5c2c2f0509..ecc298abec 100644
11407+
index eecb1e7f25..1d3b59c73a 100644
1140811408
--- a/Lib/subprocess.py
1140911409
+++ b/Lib/subprocess.py
11410-
@@ -737,6 +737,9 @@
11410+
@@ -741,6 +741,9 @@
1141111411
restore_signals=True, start_new_session=False,
1141211412
pass_fds=(), *, encoding=None, errors=None, text=None):
1141311413
"""Create new Popen instance."""
@@ -11417,7 +11417,7 @@ index 5c2c2f0509..ecc298abec 100644
1141711417
_cleanup()
1141811418
# Held while anything is calling waitpid before returncode has been
1141911419
# updated to prevent clobbering returncode if wait() or poll() are
11420-
@@ -1721,7 +1724,7 @@
11420+
@@ -1725,7 +1728,7 @@
1142111421
raise SubprocessError("Unknown child exit status!")
1142211422

1142311423

@@ -11426,7 +11426,7 @@ index 5c2c2f0509..ecc298abec 100644
1142611426
_WNOHANG=os.WNOHANG, _ECHILD=errno.ECHILD):
1142711427
"""Check if child process has terminated. Returns returncode
1142811428
attribute.
11429-
@@ -1730,6 +1733,8 @@
11429+
@@ -1734,6 +1737,8 @@
1143011430
outside of the local scope (nor can any methods it calls).
1143111431

1143211432
"""
@@ -12233,7 +12233,7 @@ index 6558952308..a121e8c2dd 100644
1223312233

1223412234
from test import support
1223512235
diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py
12236-
index 2a4ae1573e..c91e97e75c 100644
12236+
index 5302b1ce57..ff7a7675c7 100644
1223712237
--- a/Lib/test/test_os.py
1223812238
+++ b/Lib/test/test_os.py
1223912239
@@ -852,6 +852,7 @@
@@ -12317,7 +12317,7 @@ index 2a4ae1573e..c91e97e75c 100644
1231712317
"""Check if stty returns the same results
1231812318

1231912319
diff --git a/Lib/test/test_pdb.py b/Lib/test/test_pdb.py
12320-
index 9c9471a8cc..cfa6866dd1 100644
12320+
index f77c355077..643dec376a 100644
1232112321
--- a/Lib/test/test_pdb.py
1232212322
+++ b/Lib/test/test_pdb.py
1232312323
@@ -1231,6 +1231,7 @@
@@ -12800,7 +12800,7 @@ index a0bd741c36..62fbd9f171 100644
1280012800
sub = subprocess.Popen([sys.executable,
1280112801
os.path.join(os.path.dirname(__file__),
1280212802
diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py
12803-
index 2d3ab93555..b417233e12 100644
12803+
index 4661d1e252..27a841e889 100644
1280412804
--- a/Lib/test/test_subprocess.py
1280512805
+++ b/Lib/test/test_subprocess.py
1280612806
@@ -31,6 +31,9 @@
@@ -13639,18 +13639,18 @@ index 6023c1e138..ae5803c4c8 100755
1363913639
+ -I$(srcdir)/Modules/_decimal/libmpdec \
1364013640
+ -DCONFIG_32=1 -DANSI=1
1364113641
diff --git a/Modules/_ctypes/callproc.c b/Modules/_ctypes/callproc.c
13642-
index a9b8675cd9..b99d451f82 100644
13642+
index de75918d49..9e0189b657 100644
1364313643
--- a/Modules/_ctypes/callproc.c
1364413644
+++ b/Modules/_ctypes/callproc.c
13645-
@@ -813,6 +813,7 @@
13645+
@@ -800,6 +800,7 @@
1364613646
ffi_type **atypes,
1364713647
ffi_type *restype,
1364813648
void *resmem,
1364913649
+ int fixedargcount,
1365013650
int argcount)
1365113651
{
1365213652
PyThreadState *_save = NULL; /* For Py_BLOCK_THREADS and Py_UNBLOCK_THREADS */
13653-
@@ -836,11 +837,12 @@
13653+
@@ -823,11 +824,12 @@
1365413654
if ((flags & FUNCFLAG_CDECL) == 0)
1365513655
cc = FFI_STDCALL;
1365613656
#endif
@@ -13668,7 +13668,7 @@ index a9b8675cd9..b99d451f82 100644
1366813668
PyErr_SetString(PyExc_RuntimeError,
1366913669
"ffi_prep_cif failed");
1367013670
return -1;
13671-
@@ -1213,6 +1215,9 @@
13671+
@@ -1200,6 +1202,9 @@
1367213672

1367313673
if (-1 == _call_function_pointer(flags, pProc, avalues, atypes,
1367413674
rtype, resbuf,

0 commit comments

Comments
 (0)