Commit ccc63b1d authored by Alexandre Vassalotti's avatar Alexandre Vassalotti

Added Windows build config for _stringio and _pickle.

parent 66b343b6
...@@ -986,10 +986,18 @@ ...@@ -986,10 +986,18 @@
RelativePath="..\..\Modules\_fileio.c" RelativePath="..\..\Modules\_fileio.c"
> >
</File> </File>
<File^M <File
RelativePath="..\..\Modules\_bytesio.c"^M RelativePath="..\..\Modules\_bytesio.c"
>^M >
</File>^M </File>
<File
RelativePath="..\..\Modules\_stringio.c"
>
</File>
<File
RelativePath="..\..\Modules\_pickle.c"
>
</File>
<File <File
RelativePath="..\..\Modules\_functoolsmodule.c" RelativePath="..\..\Modules\_functoolsmodule.c"
> >
......
...@@ -60,6 +60,8 @@ extern PyObject* PyInit__lsprof(void); ...@@ -60,6 +60,8 @@ extern PyObject* PyInit__lsprof(void);
extern PyObject* PyInit__ast(void); extern PyObject* PyInit__ast(void);
extern PyObject* PyInit__fileio(void); extern PyObject* PyInit__fileio(void);
extern PyObject* PyInit__bytesio(void); extern PyObject* PyInit__bytesio(void);
extern PyObject* PyInit__stringio(void);
extern PyObject* PyInit__pickle(void);
extern PyObject* PyInit_atexit(void); extern PyObject* PyInit_atexit(void);
extern PyObject* _PyWarnings_Init(void); extern PyObject* _PyWarnings_Init(void);
...@@ -150,6 +152,8 @@ struct _inittab _PyImport_Inittab[] = { ...@@ -150,6 +152,8 @@ struct _inittab _PyImport_Inittab[] = {
{"_fileio", PyInit__fileio}, {"_fileio", PyInit__fileio},
{"_bytesio", PyInit__bytesio}, {"_bytesio", PyInit__bytesio},
{"_stringio", PyInit__stringio},
{"_pickle", PyInit__pickle},
{"atexit", PyInit_atexit}, {"atexit", PyInit_atexit},
/* Sentinel */ /* Sentinel */
......
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