diff options
author | Barry Warsaw <barry@python.org> | 2000-05-02 19:20:26 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2000-05-02 19:20:26 (GMT) |
commit | 57e11ae8472df1dd20c74ce9f37840896d96205d (patch) | |
tree | 967acf7ca5414e20ff9b7af476736699ddf626a6 | |
parent | 3ce096459e348c95c2c3348f8d84720f25c1a4c9 (diff) | |
download | cpython-57e11ae8472df1dd20c74ce9f37840896d96205d.zip cpython-57e11ae8472df1dd20c74ce9f37840896d96205d.tar.gz cpython-57e11ae8472df1dd20c74ce9f37840896d96205d.tar.bz2 |
usage_mid: Remove the description of the -X flag; it's gone now.
Py_Main(): Remove the 'X' case.
-rw-r--r-- | Modules/main.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Modules/main.c b/Modules/main.c index c479507..e680ed4 100644 --- a/Modules/main.c +++ b/Modules/main.c @@ -78,7 +78,6 @@ static char *usage_mid = "\ -U : Unicode literals: treats '...' literals like u'...'\n\ -v : verbose (trace import statements) (also PYTHONVERBOSE=x)\n\ -x : skip first line of source, allowing use of non-Unix forms of #!cmd\n\ --X : disable class based built-in exceptions\n\ -c cmd : program passed in as string (terminates option list)\n\ file : program read from script file\n\ - : program read from stdin (default; interactive mode if a tty)\n\ @@ -169,10 +168,6 @@ Py_Main(argc, argv) skipfirstline = 1; break; - case 'X': - Py_UseClassExceptionsFlag = 0; - break; - case 'U': Py_UnicodeFlag++; break; |