This also updates pip and setuptools. With this occasion, they also get PKG_RELEASEs of their own. Dropped patch 011-remove-setupterm-definition.patch Manually re-applied 005-fix-bluetooth-support.patch Ran make package/python/refresh to refresh other patches. Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
11 lines
641 B
Diff
11 lines
641 B
Diff
--- a/Python/pythonrun.c
|
|
+++ b/Python/pythonrun.c
|
|
@@ -71,7 +71,7 @@ int Py_InteractiveFlag; /* Needed by Py_
|
|
int Py_InspectFlag; /* Needed to determine whether to exit at SystemExit */
|
|
int Py_NoSiteFlag; /* Suppress 'import site' */
|
|
int Py_BytesWarningFlag; /* Warn on str(bytes) and str(buffer) */
|
|
-int Py_DontWriteBytecodeFlag; /* Suppress writing bytecode files (*.py[co]) */
|
|
+int Py_DontWriteBytecodeFlag = 1; /* Suppress writing bytecode files (*.py[co]) */
|
|
int Py_UseClassExceptionsFlag = 1; /* Needed by bltinmodule.c: deprecated */
|
|
int Py_FrozenFlag; /* Needed by getpath.c */
|
|
int Py_UnicodeFlag = 0; /* Needed by compile.c */
|