From b16d197d661915bf16c84e06cb07e1f7a934ad10 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Mon, 1 May 2000 17:55:15 +0000 Subject: Marc-Andre Lemburg: Added Py_UnicodeFlag for use by the -U command line option. --- Python/pythonrun.c | 1 + 1 file changed, 1 insertion(+) (limited to 'Python/pythonrun.c') 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; -- cgit v1.2.1