diff options
author | Éric Araujo <merwok@netwok.org> | 2011-03-26 01:00:51 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2011-03-26 01:00:51 (GMT) |
commit | 5c1da90f8cf0172cfb6591f1a37e436f3eef808c (patch) | |
tree | ff229aaef324b1f03f3b6686036f6052b904d867 /Doc/library/sys.rst | |
parent | 4e4edf5e784cd2ba746f64e3b8379bc725c0abb5 (diff) | |
parent | b39b1967cec1cab582cfe161d935521774fceaf7 (diff) | |
download | cpython-5c1da90f8cf0172cfb6591f1a37e436f3eef808c.zip cpython-5c1da90f8cf0172cfb6591f1a37e436f3eef808c.tar.gz cpython-5c1da90f8cf0172cfb6591f1a37e436f3eef808c.tar.bz2 |
Merge 3.2
Diffstat (limited to 'Doc/library/sys.rst')
-rw-r--r-- | Doc/library/sys.rst | 43 |
1 files changed, 16 insertions, 27 deletions
diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst index b09571f..e4cdccb 100644 --- a/Doc/library/sys.rst +++ b/Doc/library/sys.rst @@ -227,33 +227,22 @@ always available. The struct sequence *flags* exposes the status of command line flags. The attributes are read only. - +------------------------------+------------------------------------------+ - | attribute | flag | - +==============================+==========================================+ - | :const:`debug` | -d | - +------------------------------+------------------------------------------+ - | :const:`division_warning` | -Q | - +------------------------------+------------------------------------------+ - | :const:`inspect` | -i | - +------------------------------+------------------------------------------+ - | :const:`interactive` | -i | - +------------------------------+------------------------------------------+ - | :const:`optimize` | -O or -OO | - +------------------------------+------------------------------------------+ - | :const:`dont_write_bytecode` | -B | - +------------------------------+------------------------------------------+ - | :const:`no_user_site` | -s | - +------------------------------+------------------------------------------+ - | :const:`no_site` | -S | - +------------------------------+------------------------------------------+ - | :const:`ignore_environment` | -E | - +------------------------------+------------------------------------------+ - | :const:`verbose` | -v | - +------------------------------+------------------------------------------+ - | :const:`bytes_warning` | -b | - +------------------------------+------------------------------------------+ - | :const:`quiet` | -q | - +------------------------------+------------------------------------------+ + ============================= ============================= + attribute flag + ============================= ============================= + :const:`debug` :option:`-d` + :const:`division_warning` :option:`-Q` + :const:`inspect` :option:`-i` + :const:`interactive` :option:`-i` + :const:`optimize` :option:`-O` or :option:`-OO` + :const:`dont_write_bytecode` :option:`-B` + :const:`no_user_site` :option:`-s` + :const:`no_site` :option:`-S` + :const:`ignore_environment` :option:`-E` + :const:`verbose` :option:`-v` + :const:`bytes_warning` :option:`-b` + :const:`quiet` :option:`-q` + ============================= ============================= .. versionchanged:: 3.2 Added ``quiet`` attribute for the new :option:`-q` flag. |