Skip to content

Commit 64b25d4

Browse files
committed
Bumped Python version to v3.6.13.
1 parent 16abf2c commit 64b25d4

File tree

2 files changed

+6
-6
lines changed

2 files changed

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

3636
OPENSSL_VERSION_NUMBER=1.0.2

patch/Python/Python.patch

Lines changed: 5 additions & 5 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 @@
@@ -13677,18 +13677,18 @@ index 1a553f0e65..115e202425 100755
1367713677
+ -I$(srcdir)/Modules/_decimal/libmpdec \
1367813678
+ -DCONFIG_32=1 -DANSI=1
1367913679
diff --git a/Modules/_ctypes/callproc.c b/Modules/_ctypes/callproc.c
13680-
index d1c190f359..a0fefba28b 100644
13680+
index 2bb289bce0..9097ebe30b 100644
1368113681
--- a/Modules/_ctypes/callproc.c
1368213682
+++ b/Modules/_ctypes/callproc.c
13683-
@@ -765,6 +765,7 @@
13683+
@@ -752,6 +752,7 @@
1368413684
ffi_type **atypes,
1368513685
ffi_type *restype,
1368613686
void *resmem,
1368713687
+ int fixedargcount,
1368813688
int argcount)
1368913689
{
1369013690
#ifdef WITH_THREAD
13691-
@@ -793,11 +794,12 @@
13691+
@@ -780,11 +781,12 @@
1369213692
if ((flags & FUNCFLAG_CDECL) == 0)
1369313693
cc = FFI_STDCALL;
1369413694
#endif
@@ -13706,7 +13706,7 @@ index d1c190f359..a0fefba28b 100644
1370613706
PyErr_SetString(PyExc_RuntimeError,
1370713707
"ffi_prep_cif failed");
1370813708
return -1;
13709-
@@ -1194,6 +1196,9 @@
13709+
@@ -1181,6 +1183,9 @@
1371013710

1371113711
if (-1 == _call_function_pointer(flags, pProc, avalues, atypes,
1371213712
rtype, resbuf,

0 commit comments

Comments
 (0)