diff options
author | Guido van Rossum <guido@python.org> | 2007-04-27 23:53:51 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2007-04-27 23:53:51 +0000 |
commit | ed9f1907286ed2cb9109ccb72f318ea249e6c295 (patch) | |
tree | 33c825a9886dabf6d2e322afcc3918e4b1a521b5 /Python/pythonrun.c | |
parent | 3f3657a9a2bd6e7227cf11ef877d7f4ed90d4ab3 (diff) | |
download | cpython-ed9f1907286ed2cb9109ccb72f318ea249e6c295.tar.gz |
Checkpoint. Manipulated things so that string literals are always
unicode, and a few other compensating changes, e.g. str <- unicode,
chr <- unichr, and repr() of a unicode string no longer starts
with 'u'. Lots of unit tests are broken, but some basic things
work, in particular distutils works so the extensions can be built,
and test_builtin.py works.
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r-- | Python/pythonrun.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c index 8ff3629511..3d16ba5b66 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -76,7 +76,6 @@ int Py_InspectFlag; /* Needed to determine whether to exit at SystemError */ int Py_NoSiteFlag; /* Suppress 'import site' */ int Py_UseClassExceptionsFlag = 1; /* Needed by bltinmodule.c: deprecated */ int Py_FrozenFlag; /* Needed by getpath.c */ -int Py_UnicodeFlag = 0; /* Needed by compile.c */ int Py_IgnoreEnvironmentFlag; /* e.g. PYTHONPATH, PYTHONHOME */ /* Reference to 'warnings' module, to avoid importing it |