Pārlūkot izejas kodu

Merge pull request #541 from commodo/python-do-not-compile

python: add patch to disable python byte codes by default
sbyx 10 gadus atpakaļ
vecāks
revīzija
088ff62664
1 mainītis faili ar 22 papildinājumiem un 0 dzēšanām
  1. 22
    0
      lang/python/patches/140-do-not-write-bytes-codes.patch

+ 22
- 0
lang/python/patches/140-do-not-write-bytes-codes.patch Parādīt failu

@@ -0,0 +1,22 @@
1
+diff --git a/Python/pythonrun.c b/Python/pythonrun.c
2
+index 748a63b..cb6e291 100644
3
+--- a/Python/pythonrun.c
4
++++ b/Python/pythonrun.c
5
+@@ -79,7 +79,7 @@ int Py_InteractiveFlag; /* Needed by Py_FdIsInteractive() below */
6
+ int Py_InspectFlag; /* Needed to determine whether to exit at SystemExit */
7
+ int Py_NoSiteFlag; /* Suppress 'import site' */
8
+ int Py_BytesWarningFlag; /* Warn on str(bytes) and str(buffer) */
9
+-int Py_DontWriteBytecodeFlag; /* Suppress writing bytecode files (*.py[co]) */
10
++int Py_DontWriteBytecodeFlag = 1; /* Suppress writing bytecode files (*.py[co]) */
11
+ int Py_UseClassExceptionsFlag = 1; /* Needed by bltinmodule.c: deprecated */
12
+ int Py_FrozenFlag; /* Needed by getpath.c */
13
+ int Py_UnicodeFlag = 0; /* Needed by compile.c */
14
+@@ -174,7 +174,7 @@ Py_InitializeEx(int install_sigs)
15
+     if ((p = Py_GETENV("PYTHONOPTIMIZE")) && *p != '\0')
16
+         Py_OptimizeFlag = add_flag(Py_OptimizeFlag, p);
17
+     if ((p = Py_GETENV("PYTHONDONTWRITEBYTECODE")) && *p != '\0')
18
+-        Py_DontWriteBytecodeFlag = add_flag(Py_DontWriteBytecodeFlag, p);
19
++        Py_DontWriteBytecodeFlag = atoi(p);
20
+     /* The variable is only tested for existence here; _PyRandom_Init will
21
+        check its value further. */
22
+     if ((p = Py_GETENV("PYTHONHASHSEED")) && *p != '\0')