Marc-Andre Lemburg:

Added -U command line option.

With the option enabled the Python compiler interprets all "..."
strings as u"..." (same with r"..." and ur"...").
This commit is contained in:
Guido van Rossum 2000-05-01 17:54:33 +00:00
parent 22b65a8edc
commit c15a9a1f98
1 changed files with 6 additions and 1 deletions

View File

@ -75,6 +75,7 @@ Options and arguments (and corresponding environment variables):\n\
";
static char *usage_mid = "\
-u : unbuffered binary stdout and stderr (also PYTHONUNBUFFERED=x)\n\
-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\
@ -119,7 +120,7 @@ Py_Main(argc, argv)
if ((p = getenv("PYTHONUNBUFFERED")) && *p != '\0')
unbuffered = 1;
while ((c = getopt(argc, argv, "c:diOStuvxX")) != EOF) {
while ((c = getopt(argc, argv, "c:diOStuUvxX")) != EOF) {
if (c == 'c') {
/* -c is the last option; following arguments
that look like options are left for the
@ -172,6 +173,10 @@ Py_Main(argc, argv)
Py_UseClassExceptionsFlag = 0;
break;
case 'U':
Py_UnicodeFlag++;
break;
/* This space reserved for other options */
default: