Issue #19977, #19036: Always include <locale.h> in pythonrun.c

to get LC_CTYPE constant on Windows.
This commit is contained in:
Victor Stinner 2014-03-18 02:06:38 +01:00
parent 07beb375b7
commit 518e610977
1 changed files with 1 additions and 1 deletions

View File

@ -15,6 +15,7 @@
#include "ast.h"
#include "marshal.h"
#include "osdefs.h"
#include <locale.h>
#ifdef HAVE_SIGNAL_H
#include <signal.h>
@ -25,7 +26,6 @@
#endif
#ifdef HAVE_LANGINFO_H
#include <locale.h>
#include <langinfo.h>
#endif