summaryrefslogtreecommitdiffstats
path: root/PC
diff options
context:
space:
mode:
Diffstat (limited to 'PC')
-rw-r--r--PC/VC6/pythoncore.dsp16
-rw-r--r--PC/config.c8
2 files changed, 18 insertions, 6 deletions
diff --git a/PC/VC6/pythoncore.dsp b/PC/VC6/pythoncore.dsp
index 6f6abdb..3803c03 100644
--- a/PC/VC6/pythoncore.dsp
+++ b/PC/VC6/pythoncore.dsp
@@ -97,6 +97,10 @@ SOURCE=..\..\Modules\_bisectmodule.c
# End Source File
# Begin Source File
+SOURCE=..\..\Modules\_bufferedio.c
+# End Source File
+# Begin Source File
+
SOURCE=..\..\Modules\_bytesio.c
# End Source File
# Begin Source File
@@ -149,6 +153,10 @@ SOURCE=..\..\Modules\_heapqmodule.c
# End Source File
# Begin Source File
+SOURCE=..\..\Modules\_iobase.c
+# End Source File
+# Begin Source File
+
SOURCE=..\..\Modules\_json.c
# End Source File
# Begin Source File
@@ -185,6 +193,10 @@ SOURCE=..\..\PC\_subprocess.c
# End Source File
# Begin Source File
+SOURCE=..\..\Modules\_textio.c
+# End Source File
+# Begin Source File
+
SOURCE=..\..\Modules\_threadmodule.c
# End Source File
# Begin Source File
@@ -463,6 +475,10 @@ SOURCE=..\..\Modules\zlib\inftrees.c
# End Source File
# Begin Source File
+SOURCE=..\..\Modules\io.c
+# End Source File
+# Begin Source File
+
SOURCE=..\..\Objects\iterobject.c
# End Source File
# Begin Source File
diff --git a/PC/config.c b/PC/config.c
index f2bdfdb..5f58f20 100644
--- a/PC/config.c
+++ b/PC/config.c
@@ -58,9 +58,7 @@ extern PyObject* PyInit__codecs_tw(void);
extern PyObject* PyInit__subprocess(void);
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__io(void);
extern PyObject* PyInit__pickle(void);
extern PyObject* PyInit_atexit(void);
extern PyObject* _PyWarnings_Init(void);
@@ -150,9 +148,7 @@ struct _inittab _PyImport_Inittab[] = {
{"sys", NULL},
{"_warnings", _PyWarnings_Init},
- {"_fileio", PyInit__fileio},
- {"_bytesio", PyInit__bytesio},
- {"_stringio", PyInit__stringio},
+ {"_io", PyInit__io},
{"_pickle", PyInit__pickle},
{"atexit", PyInit_atexit},