1
0
mirror of https://github.com/python/cpython synced 2024-07-05 18:03:35 +00:00

Added Windows build config for _stringio and _pickle.

This commit is contained in:
Alexandre Vassalotti 2008-06-11 23:38:40 +00:00
parent 66b343b65f
commit ccc63b1d74
2 changed files with 16 additions and 4 deletions

View File

@ -986,10 +986,18 @@
RelativePath="..\..\Modules\_fileio.c"
>
</File>
<File^M
RelativePath="..\..\Modules\_bytesio.c"^M
>^M
</File>^M
<File
RelativePath="..\..\Modules\_bytesio.c"
>
</File>
<File
RelativePath="..\..\Modules\_stringio.c"
>
</File>
<File
RelativePath="..\..\Modules\_pickle.c"
>
</File>
<File
RelativePath="..\..\Modules\_functoolsmodule.c"
>

View File

@ -60,6 +60,8 @@ extern PyObject* PyInit__lsprof(void);
extern PyObject* PyInit__ast(void);
extern PyObject* PyInit__fileio(void);
extern PyObject* PyInit__bytesio(void);
extern PyObject* PyInit__stringio(void);
extern PyObject* PyInit__pickle(void);
extern PyObject* PyInit_atexit(void);
extern PyObject* _PyWarnings_Init(void);
@ -150,6 +152,8 @@ struct _inittab _PyImport_Inittab[] = {
{"_fileio", PyInit__fileio},
{"_bytesio", PyInit__bytesio},
{"_stringio", PyInit__stringio},
{"_pickle", PyInit__pickle},
{"atexit", PyInit_atexit},
/* Sentinel */