Skip to content

Commit ea51d85

Browse files
committed
Update Python version to v3.7.10.
1 parent 33f8321 commit ea51d85

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
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.7.9
33+
PYTHON_VERSION=3.7.10
3434
PYTHON_VER=$(basename $(PYTHON_VERSION))
3535

3636
OPENSSL_VERSION_NUMBER=1.1.1

patch/Python/Python.patch

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ index 56285b5ff8..f78a152ade 100644
240240
def three_way_cmp(x, y):
241241
"""Return -1 if x < y, 0 if x == y and 1 if x > y"""
242242
diff --git a/Lib/ctypes/test/test_parameters.py b/Lib/ctypes/test/test_parameters.py
243-
index e4c25fd880..811af9dfd6 100644
243+
index 531894fdec..8b8a86f139 100644
244244
--- a/Lib/ctypes/test/test_parameters.py
245245
+++ b/Lib/ctypes/test/test_parameters.py
246246
@@ -140,7 +140,7 @@
@@ -542,7 +542,7 @@ index a2941f3fe0..83dafd2981 100644
542542
pt = POINT(15, 25)
543543
left = c_long.in_dll(dll, 'left')
544544
diff --git a/Lib/ctypes/util.py b/Lib/ctypes/util.py
545-
index 97973bce00..0ed9540719 100644
545+
index 0c2510e161..6c3c43f11d 100644
546546
--- a/Lib/ctypes/util.py
547547
+++ b/Lib/ctypes/util.py
548548
@@ -67,7 +67,7 @@
@@ -13673,18 +13673,18 @@ index b04ec7b65a..a8b4569c08 100755
1367313673
+ -I$(srcdir)/Modules/_decimal/libmpdec \
1367413674
+ -DCONFIG_32=1 -DANSI=1
1367513675
diff --git a/Modules/_ctypes/callproc.c b/Modules/_ctypes/callproc.c
13676-
index 73413531bd..417301541d 100644
13676+
index 9cbf9801ad..313127b692 100644
1367713677
--- a/Modules/_ctypes/callproc.c
1367813678
+++ b/Modules/_ctypes/callproc.c
13679-
@@ -767,6 +767,7 @@
13679+
@@ -754,6 +754,7 @@
1368013680
ffi_type **atypes,
1368113681
ffi_type *restype,
1368213682
void *resmem,
1368313683
+ int fixedargcount,
1368413684
int argcount)
1368513685
{
1368613686
PyThreadState *_save = NULL; /* For Py_BLOCK_THREADS and Py_UNBLOCK_THREADS */
13687-
@@ -793,11 +794,12 @@
13687+
@@ -780,11 +781,12 @@
1368813688
if ((flags & FUNCFLAG_CDECL) == 0)
1368913689
cc = FFI_STDCALL;
1369013690
#endif
@@ -13702,7 +13702,7 @@ index 73413531bd..417301541d 100644
1370213702
PyErr_SetString(PyExc_RuntimeError,
1370313703
"ffi_prep_cif failed");
1370413704
return -1;
13705-
@@ -1200,6 +1202,9 @@
13705+
@@ -1187,6 +1189,9 @@
1370613706

1370713707
if (-1 == _call_function_pointer(flags, pProc, avalues, atypes,
1370813708
rtype, resbuf,

0 commit comments

Comments
 (0)