[Python-3000-checkins] r56493 - in python/branches/py3k-struni: PC/config.c PCbuild/pythoncore.vcproj

martin.v.loewis python-3000-checkins at python.org
Sun Jul 22 16:48:07 CEST 2007


Author: martin.v.loewis
Date: Sun Jul 22 16:48:07 2007
New Revision: 56493

Modified:
   python/branches/py3k-struni/PC/config.c
   python/branches/py3k-struni/PCbuild/pythoncore.vcproj
Log:
Drop cPickle from Windows build process.

Modified: python/branches/py3k-struni/PC/config.c
==============================================================================
--- python/branches/py3k-struni/PC/config.c	(original)
+++ python/branches/py3k-struni/PC/config.c	Sun Jul 22 16:48:07 2007
@@ -22,7 +22,6 @@
 extern void inittime(void);
 extern void initthread(void);
 extern void initcStringIO(void);
-extern void initcPickle(void);
 #ifdef WIN32
 extern void initmsvcrt(void);
 extern void init_locale(void);
@@ -92,7 +91,6 @@
         {"thread", initthread},
 #endif
         {"cStringIO", initcStringIO},
-        {"cPickle", initcPickle},
 #ifdef WIN32
         {"msvcrt", initmsvcrt},
         {"_locale", init_locale},

Modified: python/branches/py3k-struni/PCbuild/pythoncore.vcproj
==============================================================================
--- python/branches/py3k-struni/PCbuild/pythoncore.vcproj	(original)
+++ python/branches/py3k-struni/PCbuild/pythoncore.vcproj	Sun Jul 22 16:48:07 2007
@@ -479,9 +479,6 @@
 			RelativePath="..\PC\config.c">
 		</File>
 		<File
-			RelativePath="..\Modules\cPickle.c">
-		</File>
-		<File
 			RelativePath="..\Modules\cStringIO.c">
 		</File>
 		<File


More information about the Python-3000-checkins mailing list