summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2007-12-07 11:52:55 (GMT)
committerChristian Heimes <christian@cheimes.de>2007-12-07 11:52:55 (GMT)
commit226679ae095b70eb03505a817912097b8e816fb0 (patch)
tree6db38b183ed4851361d555729859e8b30ef941e9
parentcb5c80f6d9e6079b570cca6ff871caa34bbe76e4 (diff)
downloadcpython-226679ae095b70eb03505a817912097b8e816fb0.zip
cpython-226679ae095b70eb03505a817912097b8e816fb0.tar.gz
cpython-226679ae095b70eb03505a817912097b8e816fb0.tar.bz2
Added -b option to the list of command line options
-rw-r--r--Doc/using/cmdline.rst8
1 files changed, 7 insertions, 1 deletions
diff --git a/Doc/using/cmdline.rst b/Doc/using/cmdline.rst
index 384788d..3fe405a 100644
--- a/Doc/using/cmdline.rst
+++ b/Doc/using/cmdline.rst
@@ -21,7 +21,7 @@ Command line
When invoking Python, you may specify any of these options::
- python [-dEiOStuUvxX?] [-c command | -m module-name | script | - ] [args]
+ python [-bdEiOStuUvxX?] [-c command | -m module-name | script | - ] [args]
The most common use case is, of course, a simple invocation of a script::
@@ -136,6 +136,12 @@ Generic options
Miscellaneous options
~~~~~~~~~~~~~~~~~~~~~
+.. cmdoption:: -b
+
+ Issue a warning when comparing str and bytes. Issue an error when the
+ option is given twice (:option:`-bb`).
+
+
.. cmdoption:: -d
Turn on parser debugging output (for wizards only, depending on compilation