python3: Update to 3.7.1

This commit is contained in:
Alexey Pavlov
2018-10-30 09:52:42 +03:00
parent 70c2628d20
commit 064973e09d
25 changed files with 241 additions and 1883 deletions

View File

@@ -0,0 +1,12 @@
diff -Naur Python-3.7.0-orig/Modules/_abc.c Python-3.7.0/Modules/_abc.c
--- Python-3.7.0-orig/Modules/_abc.c 2018-06-27 06:07:35.000000000 +0300
+++ Python-3.7.0/Modules/_abc.c 2018-07-12 10:22:24.099663800 +0300
@@ -66,7 +66,7 @@
"Internal state held by ABC machinery.");
static PyTypeObject _abc_data_type = {
- PyVarObject_HEAD_INIT(&PyType_Type, 0)
+ PyVarObject_HEAD_INIT(NULL, 0)
"_abc_data", /*tp_name*/
sizeof(_abc_data), /*tp_size*/
.tp_dealloc = (destructor)abc_data_dealloc,