Kaydet (Commit) 57e11ae8 authored tarafından Barry Warsaw's avatar Barry Warsaw

usage_mid: Remove the description of the -X flag; it's gone now.

Py_Main(): Remove the 'X' case.
üst 3ce09645
...@@ -78,7 +78,6 @@ static char *usage_mid = "\ ...@@ -78,7 +78,6 @@ static char *usage_mid = "\
-U : Unicode literals: treats '...' literals like u'...'\n\ -U : Unicode literals: treats '...' literals like u'...'\n\
-v : verbose (trace import statements) (also PYTHONVERBOSE=x)\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 : 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\ -c cmd : program passed in as string (terminates option list)\n\
file : program read from script file\n\ file : program read from script file\n\
- : program read from stdin (default; interactive mode if a tty)\n\ - : program read from stdin (default; interactive mode if a tty)\n\
...@@ -169,10 +168,6 @@ Py_Main(argc, argv) ...@@ -169,10 +168,6 @@ Py_Main(argc, argv)
skipfirstline = 1; skipfirstline = 1;
break; break;
case 'X':
Py_UseClassExceptionsFlag = 0;
break;
case 'U': case 'U':
Py_UnicodeFlag++; Py_UnicodeFlag++;
break; break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment