From 8aa7e999b5ab87cdbefe441649c223647875c110 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Tue, 28 Dec 2010 18:30:18 +0000 Subject: Add sys.flags.quiet attribute for the new -q option, as noted missing by Eric in #1772833. --- Include/pydebug.h | 1 + 1 file changed, 1 insertion(+) (limited to 'Include/pydebug.h') 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; -- cgit v1.2.1