]> granicus.if.org Git - python/commitdiff
usage_mid: Remove the description of the -X flag; it's gone now.
authorBarry Warsaw <barry@python.org>
Tue, 2 May 2000 19:20:26 +0000 (19:20 +0000)
committerBarry Warsaw <barry@python.org>
Tue, 2 May 2000 19:20:26 +0000 (19:20 +0000)
Py_Main(): Remove the 'X' case.

Modules/main.c

index c4795074af8b57388741eb9599bb9f05a76ae952..e680ed49759c51d2512e8c53173f3ac2cb552480 100644 (file)
@@ -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;