diff options
author | Guido van Rossum <guido@python.org> | 2000-05-01 17:55:15 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-05-01 17:55:15 (GMT) |
commit | b16d197d661915bf16c84e06cb07e1f7a934ad10 (patch) | |
tree | 3b2514117527484aabe555d6834b3e843ec94d23 /Python/pythonrun.c | |
parent | fdc8bdb67b7a82980d5844cb86b6eb9b48d4ec38 (diff) | |
download | cpython-b16d197d661915bf16c84e06cb07e1f7a934ad10.zip cpython-b16d197d661915bf16c84e06cb07e1f7a934ad10.tar.gz cpython-b16d197d661915bf16c84e06cb07e1f7a934ad10.tar.bz2 |
Marc-Andre Lemburg:
Added Py_UnicodeFlag for use by the -U command line option.
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r-- | Python/pythonrun.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c index 17d569d..a4c986e 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -88,6 +88,7 @@ int Py_InteractiveFlag; /* Needed by Py_FdIsInteractive() below */ int Py_NoSiteFlag; /* Suppress 'import site' */ int Py_UseClassExceptionsFlag = 1; /* Needed by bltinmodule.c */ int Py_FrozenFlag; /* Needed by getpath.c */ +int Py_UnicodeFlag = 0; /* Needed by compile.c */ static int initialized = 0; |