diff options
author | Alexandre Vassalotti <alexandre@peadrop.com> | 2008-06-12 18:35:39 (GMT) |
---|---|---|
committer | Alexandre Vassalotti <alexandre@peadrop.com> | 2008-06-12 18:35:39 (GMT) |
commit | b1549092ea5346e49eb6f0836857858a6bbd864c (patch) | |
tree | d403a4487591eb3fa1079220ed7aec7503211ecc /PC/config.c | |
parent | ca2d610dba5711823999c4751897160f138a7811 (diff) | |
download | cpython-b1549092ea5346e49eb6f0836857858a6bbd864c.zip cpython-b1549092ea5346e49eb6f0836857858a6bbd864c.tar.gz cpython-b1549092ea5346e49eb6f0836857858a6bbd864c.tar.bz2 |
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.
Diffstat (limited to 'PC/config.c')
-rw-r--r-- | PC/config.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/PC/config.c b/PC/config.c index eca2072..a7f2ede 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); |