diff options
author | Guido van Rossum <guido@python.org> | 2000-05-01 17:55:15 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-05-01 17:55:15 +0000 |
commit | 634ea52186a13a81d0cc957457adb60fd045dc24 (patch) | |
tree | 02cc2af39527532ef920a7f76e0367afd26e4b7d /Python/pythonrun.c | |
parent | 0c0b42e3eddc9735bf21ebb87818444fa85df37d (diff) | |
download | cpython-634ea52186a13a81d0cc957457adb60fd045dc24.tar.gz |
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 17d569d78f..a4c986ef6a 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; |