diff options
author | Georg Brandl <georg@python.org> | 2010-12-28 18:30:18 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-12-28 18:30:18 (GMT) |
commit | 8aa7e999b5ab87cdbefe441649c223647875c110 (patch) | |
tree | 1fc0ca2cc25768d07c0ac241a053c2e07809a919 /Include/pydebug.h | |
parent | 31e3b77fea0a1c4703bade2c68b1252505a77bc7 (diff) | |
download | cpython-8aa7e999b5ab87cdbefe441649c223647875c110.zip cpython-8aa7e999b5ab87cdbefe441649c223647875c110.tar.gz cpython-8aa7e999b5ab87cdbefe441649c223647875c110.tar.bz2 |
Add sys.flags.quiet attribute for the new -q option, as noted missing by Eric in #1772833.
Diffstat (limited to 'Include/pydebug.h')
-rw-r--r-- | Include/pydebug.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/pydebug.h b/Include/pydebug.h index 1cbb342..70c88f6 100644 --- a/Include/pydebug.h +++ b/Include/pydebug.h @@ -7,6 +7,7 @@ extern "C" { PyAPI_DATA(int) Py_DebugFlag; PyAPI_DATA(int) Py_VerboseFlag; +PyAPI_DATA(int) Py_QuietFlag; PyAPI_DATA(int) Py_InteractiveFlag; PyAPI_DATA(int) Py_InspectFlag; PyAPI_DATA(int) Py_OptimizeFlag; |