[Python-checkins] r63848 - python/trunk/Python/pythonrun.c

martin.v.loewis python-checkins at python.org
Sun Jun 1 10:06:18 CEST 2008


Author: martin.v.loewis
Date: Sun Jun  1 10:06:17 2008
New Revision: 63848

Log:
Move sys_stream and sys_isatty out of the have-langinfo block.


Modified:
   python/trunk/Python/pythonrun.c

Modified: python/trunk/Python/pythonrun.c
==============================================================================
--- python/trunk/Python/pythonrun.c	(original)
+++ python/trunk/Python/pythonrun.c	Sun Jun  1 10:06:17 2008
@@ -138,9 +138,9 @@
 	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];


More information about the Python-checkins mailing list