[Python-checkins] r69037 - in python/branches/io-c: PC/config.c PCbuild/pythoncore.vcproj

amaury.forgeotdarc python-checkins at python.org
Wed Jan 28 00:10:25 CET 2009


Author: amaury.forgeotdarc
Date: Wed Jan 28 00:10:25 2009
New Revision: 69037

Log:
Update the win32 project files


Modified:
   python/branches/io-c/PC/config.c
   python/branches/io-c/PCbuild/pythoncore.vcproj

Modified: python/branches/io-c/PC/config.c
==============================================================================
--- python/branches/io-c/PC/config.c	(original)
+++ python/branches/io-c/PC/config.c	Wed Jan 28 00:10:25 2009
@@ -58,8 +58,7 @@
 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__io(void);
 extern PyObject* PyInit__stringio(void);
 extern PyObject* PyInit__pickle(void);
 extern PyObject* PyInit_atexit(void);
@@ -150,8 +149,7 @@
         {"sys", NULL},
         {"_warnings", _PyWarnings_Init},
 
-        {"_fileio", PyInit__fileio},
-        {"_bytesio", PyInit__bytesio},
+        {"_io", PyInit__io},
         {"_stringio", PyInit__stringio},
         {"_pickle", PyInit__pickle},
         {"atexit", PyInit_atexit},

Modified: python/branches/io-c/PCbuild/pythoncore.vcproj
==============================================================================
--- python/branches/io-c/PCbuild/pythoncore.vcproj	(original)
+++ python/branches/io-c/PCbuild/pythoncore.vcproj	Wed Jan 28 00:10:25 2009
@@ -975,6 +975,10 @@
 				>
 			</File>
 			<File
+				RelativePath="..\Modules\_bufferedio.c"
+				>
+			</File>
+			<File
 				RelativePath="..\Modules\_codecsmodule.c"
 				>
 			</File>
@@ -1003,6 +1007,14 @@
 				>
 			</File>
 			<File
+				RelativePath="..\Modules\_iobase.c"
+				>
+			</File>
+			<File
+				RelativePath="..\Modules\_iomodule.h"
+				>
+			</File>
+			<File
 				RelativePath="..\Modules\_json.c"
 				>
 			</File>
@@ -1035,6 +1047,10 @@
 				>
 			</File>
 			<File
+				RelativePath="..\Modules\_textio.c"
+				>
+			</File>
+			<File
 				RelativePath="..\Modules\_weakref.c"
 				>
 			</File>
@@ -1075,6 +1091,10 @@
 				>
 			</File>
 			<File
+				RelativePath="..\Modules\io.c"
+				>
+			</File>
+			<File
 				RelativePath="..\Modules\main.c"
 				>
 			</File>


More information about the Python-checkins mailing list