From: Alexandre Vassalotti Date: Wed, 11 Jun 2008 23:38:40 +0000 (+0000) Subject: Added Windows build config for _stringio and _pickle. X-Git-Tag: v3.0b1~87 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ccc63b1d747857e0a5ce1af62279e79c516c6a4c;p=thirdparty%2FPython%2Fcpython.git Added Windows build config for _stringio and _pickle. --- diff --git a/PC/VS8.0/pythoncore.vcproj b/PC/VS8.0/pythoncore.vcproj index b8c0ffe9ee32..6d488bdf4cf3 100644 --- a/PC/VS8.0/pythoncore.vcproj +++ b/PC/VS8.0/pythoncore.vcproj @@ -986,10 +986,18 @@ RelativePath="..\..\Modules\_fileio.c" > - ^M - ^M + + + + + + diff --git a/PC/config.c b/PC/config.c index 264c4949e9c3..f2bdfdb4b6e5 100644 --- a/PC/config.c +++ b/PC/config.c @@ -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 */