python3: Update to 3.7.3

This commit is contained in:
Alexey Pavlov
2019-04-16 08:44:55 +03:00
parent 06591e9ed1
commit ea45e57abc
4 changed files with 24 additions and 26 deletions

View File

@@ -63,15 +63,14 @@ diff -Naur Python-3.7.0-orig/PC/pythonw_exe.rc Python-3.7.0/PC/pythonw_exe.rc
diff -Naur Python-3.7.0-orig/PC/winreg.c Python-3.7.0/PC/winreg.c
--- Python-3.7.0-orig/PC/winreg.c 2018-07-12 10:20:57.098311000 +0300
+++ Python-3.7.0/PC/winreg.c 2018-07-12 10:23:03.302532700 +0300
@@ -784,7 +784,7 @@
break;
}
- case REG_BINARY:
+ case REG_BINARY: // -fallthrough
@@ -791,6 +791,7 @@
case REG_BINARY:
/* ALSO handle ALL unknown data types here. Even if we can't
support it natively, we should handle the bits. */
+ /* fallthrough */
default:
if (retDataSize == 0) {
Py_INCREF(Py_None);
diff -Naur Python-3.7.0-orig/Python/thread_nt.h Python-3.7.0/Python/thread_nt.h
--- Python-3.7.0-orig/Python/thread_nt.h 2018-06-27 06:07:35.000000000 +0300
+++ Python-3.7.0/Python/thread_nt.h 2018-07-12 10:23:03.302532700 +0300