From b1549092ea5346e49eb6f0836857858a6bbd864c Mon Sep 17 00:00:00 2001 From: Alexandre Vassalotti Date: Thu, 12 Jun 2008 18:35:39 +0000 Subject: Removed _stringio from Windows build. For some yet unknown reason, MSVC's linker fails to resolve _stringio's module initializer (PyInit__stringio). This probably means the module is not build correctly. Therefore, I am removing Windows support temporarily until I find how to add new modules properly for MSVC. --- PC/config.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'PC/config.c') diff --git a/PC/config.c b/PC/config.c index eca207252d..a7f2ede9d4 100644 --- a/PC/config.c +++ b/PC/config.c @@ -60,8 +60,6 @@ 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); -- cgit v1.2.1