mirror of
https://github.com/python/cpython.git
synced 2025-07-25 04:04:13 +00:00
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.
This commit is contained in:
parent
ca2d610dba
commit
b1549092ea
4 changed files with 0 additions and 13 deletions
|
@ -141,10 +141,6 @@ SOURCE=..\..\Modules\_bytesio.c
|
||||||
# End Source File
|
# End Source File
|
||||||
# Begin Source File
|
# Begin Source File
|
||||||
|
|
||||||
SOURCE=..\..\Modules\_stringio.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\Modules\_functoolsmodule.c
|
SOURCE=..\..\Modules\_functoolsmodule.c
|
||||||
# End Source File
|
# End Source File
|
||||||
# Begin Source File
|
# Begin Source File
|
||||||
|
|
|
@ -373,9 +373,6 @@
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\Modules\_bytesio.c">
|
RelativePath="..\..\Modules\_bytesio.c">
|
||||||
</File>
|
</File>
|
||||||
<File
|
|
||||||
RelativePath="..\..\Modules\_stringio.c">
|
|
||||||
</File>
|
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\Modules\_functoolsmodule.c">
|
RelativePath="..\..\Modules\_functoolsmodule.c">
|
||||||
</File>
|
</File>
|
||||||
|
|
|
@ -990,10 +990,6 @@
|
||||||
RelativePath="..\..\Modules\_bytesio.c"
|
RelativePath="..\..\Modules\_bytesio.c"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
|
||||||
RelativePath="..\..\Modules\_stringio.c"
|
|
||||||
>
|
|
||||||
</File>
|
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\Modules\_functoolsmodule.c"
|
RelativePath="..\..\Modules\_functoolsmodule.c"
|
||||||
>
|
>
|
||||||
|
|
|
@ -60,8 +60,6 @@ extern PyObject* PyInit__lsprof(void);
|
||||||
extern PyObject* PyInit__ast(void);
|
extern PyObject* PyInit__ast(void);
|
||||||
extern PyObject* PyInit__fileio(void);
|
extern PyObject* PyInit__fileio(void);
|
||||||
extern PyObject* PyInit__bytesio(void);
|
extern PyObject* PyInit__bytesio(void);
|
||||||
extern PyObject* PyInit__stringio(void);
|
|
||||||
extern PyObject* PyInit__pickle(void);
|
|
||||||
extern PyObject* PyInit_atexit(void);
|
extern PyObject* PyInit_atexit(void);
|
||||||
extern PyObject* _PyWarnings_Init(void);
|
extern PyObject* _PyWarnings_Init(void);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue