diff options
author | Guido van Rossum <guido@python.org> | 1998-04-10 19:46:00 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-04-10 19:46:00 (GMT) |
commit | 07c44c7ad518c08a6e7249c5c22a172f58cd5f4c (patch) | |
tree | 0ad1aa05f68ca61376b64f31bd5dc17d5eb17a97 | |
parent | 560e8adef71dd10898e0f8a0a9a20599e6bec857 (diff) | |
download | cpython-07c44c7ad518c08a6e7249c5c22a172f58cd5f4c.zip cpython-07c44c7ad518c08a6e7249c5c22a172f58cd5f4c.tar.gz cpython-07c44c7ad518c08a6e7249c5c22a172f58cd5f4c.tar.bz2 |
Document -x too.
-rw-r--r-- | Misc/python.man | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Misc/python.man b/Misc/python.man index f1a9aea..a67bcca 100644 --- a/Misc/python.man +++ b/Misc/python.man @@ -25,6 +25,9 @@ python \- an interpreted, interactive, object-oriented programming language .B \-v ] [ +.B \-x +] +[ .B \-X ] .br @@ -94,6 +97,11 @@ Force stdin, stdout and stderr to be totally unbuffered. Print a message each time a module is initialized, showing the place (filename or built-in module) from which it is loaded. .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 +be off by one! +.TP .B \-X Make the standard exceptions strings instead of classes. Use for backward compatibility with old code only. |