summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-01-07 17:09:35 (GMT)
committerGeorg Brandl <georg@python.org>2008-01-07 17:09:35 (GMT)
commit2da0fceba7dd70334aacbab0708a8cbdff92e31d (patch)
treef93838b60f3c3216db03eaa24b32f4dc92389230 /Include
parentb3255ed8c937510076b641db28ab052ddaee1178 (diff)
downloadcpython-2da0fceba7dd70334aacbab0708a8cbdff92e31d.zip
cpython-2da0fceba7dd70334aacbab0708a8cbdff92e31d.tar.gz
cpython-2da0fceba7dd70334aacbab0708a8cbdff92e31d.tar.bz2
Patch #602345 by Neal Norwitz and me: add -B option and PYTHONDONTWRITEBYTECODE envvar to skip writing bytecode.
Diffstat (limited to 'Include')
-rw-r--r--Include/pydebug.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/pydebug.h b/Include/pydebug.h
index 3282dc1..1d24853 100644
--- a/Include/pydebug.h
+++ b/Include/pydebug.h
@@ -17,6 +17,7 @@ PyAPI_DATA(int) Py_TabcheckFlag;
PyAPI_DATA(int) Py_UnicodeFlag;
PyAPI_DATA(int) Py_IgnoreEnvironmentFlag;
PyAPI_DATA(int) Py_DivisionWarningFlag;
+PyAPI_DATA(int) Py_DontWriteBytecodeFlag;
/* _XXX Py_QnewFlag should go away in 3.0. It's true iff -Qnew is passed,
on the command line, and is used in 2.2 by ceval.c to make all "/" divisions
true divisions (which they will be in 3.0). */