diff options
author | Martin Strobel <arctus@crza.de> | 2018-07-10 20:19:46 +0200 |
---|---|---|
committer | Martin Strobel <arctus@crza.de> | 2018-07-11 06:34:54 +0200 |
commit | fe01c8fc0509d1d207c1b99d7999a254121049e1 (patch) | |
tree | e6944850a13240c35a06e610477b0fb3df012f3f /lang/python/python3/patches/004-do-not-write-bytes-codes.patch | |
parent | 2aba3ab90a806318c36b5b3632857c1b0b502a67 (diff) |
python3: update to python 3.7.0
Fixes python3 host SSL build -> host-pip can use https:// urls again.
Updates Pip to 10.0.1
rebased patches
Signed-off-by: Martin Strobel <arctus@crza.de>
Diffstat (limited to 'lang/python/python3/patches/004-do-not-write-bytes-codes.patch')
-rw-r--r-- | lang/python/python3/patches/004-do-not-write-bytes-codes.patch | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lang/python/python3/patches/004-do-not-write-bytes-codes.patch b/lang/python/python3/patches/004-do-not-write-bytes-codes.patch index 463263222..eb66443aa 100644 --- a/lang/python/python3/patches/004-do-not-write-bytes-codes.patch +++ b/lang/python/python3/patches/004-do-not-write-bytes-codes.patch @@ -1,10 +1,10 @@ --- a/Python/pylifecycle.c +++ b/Python/pylifecycle.c -@@ -88,7 +88,7 @@ int Py_BytesWarningFlag; /* Warn on str( - int Py_UseClassExceptionsFlag = 1; /* Needed by bltinmodule.c: deprecated */ - int Py_FrozenFlag; /* Needed by getpath.c */ - int Py_IgnoreEnvironmentFlag; /* e.g. PYTHONPATH, PYTHONHOME */ --int Py_DontWriteBytecodeFlag; /* Suppress writing bytecode files (*.pyc) */ +@@ -120,7 +120,7 @@ int Py_NoSiteFlag = 0; /* Suppress 'impo + int Py_BytesWarningFlag = 0; /* Warn on str(bytes) and str(buffer) */ + int Py_FrozenFlag = 0; /* Needed by getpath.c */ + int Py_IgnoreEnvironmentFlag = 0; /* e.g. PYTHONPATH, PYTHONHOME */ +-int Py_DontWriteBytecodeFlag = 0; /* Suppress writing bytecode files (*.pyc) */ +int Py_DontWriteBytecodeFlag = 1; /* Suppress writing bytecode files (*.pyc) */ int Py_NoUserSiteDirectory = 0; /* for -s and site.py */ int Py_UnbufferedStdioFlag = 0; /* Unbuffered binary std{in,out,err} */ |