Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ce0964 commit 57e11aeCopy full SHA for 57e11ae
1 file changed
Modules/main.c
@@ -78,7 +78,6 @@ static char *usage_mid = "\
78
-U : Unicode literals: treats '...' literals like u'...'\n\
79
-v : verbose (trace import statements) (also PYTHONVERBOSE=x)\n\
80
-x : skip first line of source, allowing use of non-Unix forms of #!cmd\n\
81
--X : disable class based built-in exceptions\n\
82
-c cmd : program passed in as string (terminates option list)\n\
83
file : program read from script file\n\
84
- : program read from stdin (default; interactive mode if a tty)\n\
@@ -169,10 +168,6 @@ Py_Main(argc, argv)
169
168
skipfirstline = 1;
170
break;
171
172
- case 'X':
173
- Py_UseClassExceptionsFlag = 0;
174
- break;
175
-
176
case 'U':
177
Py_UnicodeFlag++;
178
0 commit comments