Commit 40ae0e93 authored by Guido van Rossum's avatar Guido van Rossum

Added _locale

parent f766e23f
...@@ -63,6 +63,7 @@ extern void initcPickle(); ...@@ -63,6 +63,7 @@ extern void initcPickle();
extern void initpcre(); extern void initpcre();
#ifdef WIN32 #ifdef WIN32
extern void initmsvcrt(); extern void initmsvcrt();
extern void init_locale();
#endif #endif
/* -- ADDMODULE MARKER 1 -- */ /* -- ADDMODULE MARKER 1 -- */
...@@ -105,6 +106,7 @@ struct _inittab _PyImport_Inittab[] = { ...@@ -105,6 +106,7 @@ struct _inittab _PyImport_Inittab[] = {
{"pcre", initpcre}, {"pcre", initpcre},
#ifdef WIN32 #ifdef WIN32
{"msvcrt", initmsvcrt}, {"msvcrt", initmsvcrt},
{"_locale", init_locale},
#endif #endif
/* -- ADDMODULE MARKER 2 -- */ /* -- ADDMODULE MARKER 2 -- */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment