diff options
author | Senthil Kumaran <senthil@uthcode.com> | 2013-06-19 22:19:46 -0500 |
---|---|---|
committer | Senthil Kumaran <senthil@uthcode.com> | 2013-06-19 22:19:46 -0500 |
commit | ce3dd0bdd550500d149121ca08611ebca623641f (patch) | |
tree | e3f9f1cc39dfd57aa71a79c1b103ccf2e4490897 /Misc/python.man | |
parent | fdf95030389bfd3e8ecf5e9760fb9926705809d4 (diff) | |
download | cpython-git-ce3dd0bdd550500d149121ca08611ebca623641f.tar.gz |
Add -b and -X options to python man page.
Patch contributed by Corey Brune.
Diffstat (limited to 'Misc/python.man')
-rw-r--r-- | Misc/python.man | 22 |
1 files changed, 18 insertions, 4 deletions
diff --git a/Misc/python.man b/Misc/python.man index 72e1ecb7b5..8155e6a447 100644 --- a/Misc/python.man +++ b/Misc/python.man @@ -11,6 +11,9 @@ python \- an interpreted, interactive, object-oriented programming language .B \-B ] [ +.B \-b +] +[ .B \-d ] [ @@ -23,14 +26,14 @@ python \- an interpreted, interactive, object-oriented programming language .B \-i ] [ -.B \-m +.B \-m .I module-name ] -[ -.B \-q -] .br [ +.B \-q +] +[ .B \-O ] [ @@ -60,6 +63,10 @@ python \- an interpreted, interactive, object-oriented programming language .B \-x ] [ +[ +.B \-X +.I option +] .B \-? ] .br @@ -105,6 +112,10 @@ Don't write .I .py[co] files on import. See also PYTHONDONTWRITEBYTECODE. .TP +.B \-b +Issue warnings about str(bytes_instance), str(bytearray_instance) +and comparing bytes/bytearray with str. (-bb: issue errors) +.TP .BI "\-c " command Specify the command to execute (see next section). This terminates the option list (following options are passed as @@ -243,6 +254,9 @@ case-sensitive. The field matches the line number, where zero matches all line numbers and is thus equivalent to an omitted line number. .TP +.BI "\-X " option +Set implementation specific option. +.TP .B \-x Skip the first line of the source. This is intended for a DOS specific hack only. Warning: the line numbers in error messages will |