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 /Doc/library/sys.rst | |
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 'Doc/library/sys.rst')
-rw-r--r-- | Doc/library/sys.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst index 6aaf10c..d10defb 100644 --- a/Doc/library/sys.rst +++ b/Doc/library/sys.rst @@ -264,6 +264,11 @@ always available. +------------------------------+------------------------------------------+ | :const:`bytes_warning` | -b | +------------------------------+------------------------------------------+ + | :const:`quiet` | -q | + +------------------------------+------------------------------------------+ + + .. versionchanged:: 3.2 + Added ``quiet`` attribute for the new :option:`-q` flag. .. data:: float_info |