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"...").
diff --git a/Modules/main.c b/Modules/main.c
index 65b22aa..c479507 100644
--- a/Modules/main.c
+++ b/Modules/main.c
@@ -75,6 +75,7 @@
 ";
 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 @@
 	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_UseClassExceptionsFlag = 0;
 			break;
 
+		case 'U':
+			Py_UnicodeFlag++;
+			break;
+
 		/* This space reserved for other options */
 
 		default: