summaryrefslogtreecommitdiff
path: root/Include/pydebug.h
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-12-28 18:30:18 +0000
committerGeorg Brandl <georg@python.org>2010-12-28 18:30:18 +0000
commit37eff4f6fb0628592d5d39b6cec49ccd8ce4a333 (patch)
tree10018b3eccd4f65f60a14581c92b33fdf867b9a4 /Include/pydebug.h
parent38bc20f7be91f3caa5ac08f8d0f5709f89294383 (diff)
downloadcpython-37eff4f6fb0628592d5d39b6cec49ccd8ce4a333.tar.gz
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.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/pydebug.h b/Include/pydebug.h
index 1cbb342e47..70c88f67a1 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;