diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2009-12-25 02:12:01 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2009-12-25 02:12:01 (GMT) |
commit | 1ac1c39aca6326ce6bcf531e420753c00d8046ae (patch) | |
tree | 3d5361082833ace828f7c1d87459ab60bb640f01 | |
parent | f84caf4edae9d1357db6afec75b042caf54cf3f5 (diff) | |
download | cpython-1ac1c39aca6326ce6bcf531e420753c00d8046ae.zip cpython-1ac1c39aca6326ce6bcf531e420753c00d8046ae.tar.gz cpython-1ac1c39aca6326ce6bcf531e420753c00d8046ae.tar.bz2 |
Updated sys.flags table in Doc
-rw-r--r-- | Doc/library/sys.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst index 5a04f39..5b07f36 100644 --- a/Doc/library/sys.rst +++ b/Doc/library/sys.rst @@ -275,6 +275,8 @@ always available. +------------------------------+------------------------------------------+ | :const:`dont_write_bytecode` | -B | +------------------------------+------------------------------------------+ + | :const:`no_user_site` | -s | + +------------------------------+------------------------------------------+ | :const:`no_site` | -S | +------------------------------+------------------------------------------+ | :const:`ignore_environment` | -E | @@ -285,6 +287,8 @@ always available. +------------------------------+------------------------------------------+ | :const:`unicode` | -U | +------------------------------+------------------------------------------+ + | :const:`bytes_warning` | -b | + +------------------------------+------------------------------------------+ .. versionadded:: 2.6 |