]> granicus.if.org Git - python/commitdiff
Marc-Andre Lemburg:
authorGuido van Rossum <guido@python.org>
Mon, 1 May 2000 17:54:33 +0000 (17:54 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 1 May 2000 17:54:33 +0000 (17:54 +0000)
Added -U command line option.

With the option enabled the Python compiler interprets all "..."
strings as u"..." (same with r"..." and ur"...").

Modules/main.c

index 65b22aa52b261fd9ae0648a46580a0d5a4171855..c4795074af8b57388741eb9599bb9f05a76ae952 100644 (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: