mirror of https://github.com/python/cpython
Fix for bug #462737.
This commit is contained in:
parent
7090ed16d7
commit
5e6007c5db
|
@ -52,7 +52,7 @@ Copyright (c) Corporation for National Research Initiatives.
|
||||||
* OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
* OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
* -------------------------------------------------------------------- */
|
* -------------------------------------------------------------------- */
|
||||||
|
|
||||||
#include "ctype.h"
|
#include <ctype.h>
|
||||||
|
|
||||||
/* === Internal API ======================================================= */
|
/* === Internal API ======================================================= */
|
||||||
|
|
||||||
|
@ -115,7 +115,7 @@ Copyright (c) Corporation for National Research Initiatives.
|
||||||
# ifdef _HAVE_BSDI
|
# ifdef _HAVE_BSDI
|
||||||
# include <time.h>
|
# include <time.h>
|
||||||
# endif
|
# endif
|
||||||
# include "wchar.h"
|
# include <wchar.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -289,7 +289,7 @@ typedef PY_UNICODE_TYPE Py_UNICODE;
|
||||||
|
|
||||||
#if defined(HAVE_USABLE_WCHAR_T) && defined(WANT_WCTYPE_FUNCTIONS)
|
#if defined(HAVE_USABLE_WCHAR_T) && defined(WANT_WCTYPE_FUNCTIONS)
|
||||||
|
|
||||||
#include "wctype.h"
|
#include <wctype.h>
|
||||||
|
|
||||||
#define Py_UNICODE_ISSPACE(ch) iswspace(ch)
|
#define Py_UNICODE_ISSPACE(ch) iswspace(ch)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue