[Python-3000-checkins] r59405 - python/branches/py3k/Doc/using/cmdline.rst

christian.heimes python-3000-checkins at python.org
Fri Dec 7 12:52:56 CET 2007


Author: christian.heimes
Date: Fri Dec  7 12:52:55 2007
New Revision: 59405

Modified:
   python/branches/py3k/Doc/using/cmdline.rst
Log:
Added -b option to the list of command line options

Modified: python/branches/py3k/Doc/using/cmdline.rst
==============================================================================
--- python/branches/py3k/Doc/using/cmdline.rst	(original)
+++ python/branches/py3k/Doc/using/cmdline.rst	Fri Dec  7 12:52:55 2007
@@ -21,7 +21,7 @@
 
 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 @@
 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


More information about the Python-3000-checkins mailing list