diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2008-06-01 08:06:17 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2008-06-01 08:06:17 (GMT) |
commit | b12d8579e362bb33c54db5ae4db94c88e68f0304 (patch) | |
tree | 628f700a8d717bd242b59d138b56c2066d1e8f41 | |
parent | 99815892f685e9ab20dfdade9c1e8a295139140c (diff) | |
download | cpython-b12d8579e362bb33c54db5ae4db94c88e68f0304.zip cpython-b12d8579e362bb33c54db5ae4db94c88e68f0304.tar.gz cpython-b12d8579e362bb33c54db5ae4db94c88e68f0304.tar.bz2 |
Move sys_stream and sys_isatty out of the have-langinfo block.
-rw-r--r-- | Python/pythonrun.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c index c30bf65..aefef06 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -138,9 +138,9 @@ Py_InitializeEx(int install_sigs) char *errors = NULL; int free_codeset = 0; int overridden = 0; + PyObject *sys_stream, *sys_isatty; #if defined(Py_USING_UNICODE) && defined(HAVE_LANGINFO_H) && defined(CODESET) char *saved_locale, *loc_codeset; - PyObject *sys_stream, *sys_isatty; #endif #ifdef MS_WINDOWS char ibuf[128]; |