4d56260742
git-svn-id: svn://svn.openwrt.org/openwrt/packages@8239 3c298f89-4303-0410-b956-a3cf2f4a3e73
18 lines
566 B
Diff
18 lines
566 B
Diff
Index: Python-2.5.1/Python/import.c
|
|
===================================================================
|
|
--- Python-2.5.1.orig/Python/import.c 2007-07-30 12:55:23.000000000 -0500
|
|
+++ Python-2.5.1/Python/import.c 2007-07-30 12:55:24.000000000 -0500
|
|
@@ -864,8 +864,12 @@
|
|
write_compiled_module(PyCodeObject *co, char *cpathname, time_t mtime)
|
|
{
|
|
FILE *fp;
|
|
+ char *py_dontcompile = getenv("PYTHON_DONTCOMPILE");
|
|
|
|
+ if (!py_dontcompile)
|
|
fp = open_exclusive(cpathname);
|
|
+ else
|
|
+ fp = NULL;
|
|
if (fp == NULL) {
|
|
if (Py_VerboseFlag)
|
|
PySys_WriteStderr(
|