Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b154909

Browse files
committed
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.
1 parent ca2d610 commit b154909

4 files changed

Lines changed: 0 additions & 13 deletions

File tree

PC/VC6/pythoncore.dsp

Lines changed: 0 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

PC/VS7.1/pythoncore.vcproj

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -373,9 +373,6 @@
373373
<File
374374
RelativePath="..\..\Modules\_bytesio.c">
375375
</File>
376-
<File
377-
RelativePath="..\..\Modules\_stringio.c">
378-
</File>
379376
<File
380377
RelativePath="..\..\Modules\_functoolsmodule.c">
381378
</File>

PC/VS8.0/pythoncore.vcproj

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -990,10 +990,6 @@
990990
RelativePath="..\..\Modules\_bytesio.c"
991991
>
992992
</File>
993-
<File
994-
RelativePath="..\..\Modules\_stringio.c"
995-
>
996-
</File>
997993
<File
998994
RelativePath="..\..\Modules\_functoolsmodule.c"
999995
>

PC/config.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,6 @@ extern PyObject* PyInit__lsprof(void);
6060
extern PyObject* PyInit__ast(void);
6161
extern PyObject* PyInit__fileio(void);
6262
extern PyObject* PyInit__bytesio(void);
63-
extern PyObject* PyInit__stringio(void);
64-
extern PyObject* PyInit__pickle(void);
6563
extern PyObject* PyInit_atexit(void);
6664
extern PyObject* _PyWarnings_Init(void);
6765

0 commit comments

Comments
 (0)