diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2009-12-25 02:18:56 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2009-12-25 02:18:56 (GMT) |
commit | eb65775e22d54df312cd992a33c2e208f15c9d8a (patch) | |
tree | 2ffc43c4387f6be40b506cf320ff3e2cd162320c /Doc/library/sys.rst | |
parent | 85d30593a8e15edbc9fabf86fa8b58dcf040fdcf (diff) | |
download | cpython-eb65775e22d54df312cd992a33c2e208f15c9d8a.zip cpython-eb65775e22d54df312cd992a33c2e208f15c9d8a.tar.gz cpython-eb65775e22d54df312cd992a33c2e208f15c9d8a.tar.bz2 |
Merged revisions 77052 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r77052 | ezio.melotti | 2009-12-25 04:16:56 +0200 (Fri, 25 Dec 2009) | 9 lines
Merged revisions 77050 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r77050 | ezio.melotti | 2009-12-25 04:12:01 +0200 (Fri, 25 Dec 2009) | 1 line
Updated sys.flags table in Doc
........
................
Diffstat (limited to 'Doc/library/sys.rst')
-rw-r--r-- | Doc/library/sys.rst | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst index 9262a09..be26b63 100644 --- a/Doc/library/sys.rst +++ b/Doc/library/sys.rst @@ -199,12 +199,8 @@ always available. +==============================+==========================================+ | :const:`debug` | -d | +------------------------------+------------------------------------------+ - | :const:`py3k_warning` | -3 | - +------------------------------+------------------------------------------+ | :const:`division_warning` | -Q | +------------------------------+------------------------------------------+ - | :const:`division_new` | -Qnew | - +------------------------------+------------------------------------------+ | :const:`inspect` | -i | +------------------------------+------------------------------------------+ | :const:`interactive` | -i | @@ -213,13 +209,15 @@ always available. +------------------------------+------------------------------------------+ | :const:`dont_write_bytecode` | -B | +------------------------------+------------------------------------------+ + | :const:`no_user_site` | -s | + +------------------------------+------------------------------------------+ | :const:`no_site` | -S | +------------------------------+------------------------------------------+ | :const:`ignore_environment` | -E | +------------------------------+------------------------------------------+ | :const:`verbose` | -v | +------------------------------+------------------------------------------+ - | :const:`unicode` | -U | + | :const:`bytes_warning` | -b | +------------------------------+------------------------------------------+ |