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

guido.van.rossum python-3000-checkins at python.org
Tue Oct 23 00:18:52 CEST 2007


Author: guido.van.rossum
Date: Tue Oct 23 00:18:51 2007
New Revision: 58597

Modified:
   python/branches/py3k/PC/config.c
   python/branches/py3k/PCbuild/pythoncore.vcproj
   python/branches/py3k/PCbuild8/pythoncore/pythoncore.vcproj
Log:
Patch 1304, by Amaury Forgeot d'Arc.
Add md5module.c and sha1module.c to the project files,
and in some cases bytes_methods.c and related .h files.


Modified: python/branches/py3k/PC/config.c
==============================================================================
--- python/branches/py3k/PC/config.c	(original)
+++ python/branches/py3k/PC/config.c	Tue Oct 23 00:18:51 2007
@@ -14,9 +14,11 @@
 extern void initerrno(void);
 extern void initgc(void);
 extern void initmath(void);
+extern void init_md5(void);
 extern void initnt(void);
 extern void initoperator(void);
 extern void initsignal(void);
+extern void init_sha1(void);
 extern void init_sha256(void);
 extern void init_sha512(void);
 extern void inittime(void);
@@ -83,6 +85,8 @@
         {"nt", initnt}, /* Use the NT os functions, not posix */
         {"operator", initoperator},
         {"signal", initsignal},
+        {"_md5", init_md5},
+        {"_sha1", init_sha1},
         {"_sha256", init_sha256},
         {"_sha512", init_sha512},
         {"time", inittime},

Modified: python/branches/py3k/PCbuild/pythoncore.vcproj
==============================================================================
--- python/branches/py3k/PCbuild/pythoncore.vcproj	(original)
+++ python/branches/py3k/PCbuild/pythoncore.vcproj	Tue Oct 23 00:18:51 2007
@@ -442,9 +442,9 @@
 		<File
 			RelativePath="..\Objects\bytes_methods.c">
 		</File>
-                <File
-                        RelativePath="..\Objects\bytesobject.c">
-                </File>
+		<File
+			RelativePath="..\Objects\bytesobject.c">
+		</File>
 		<File
 			RelativePath="..\Objects\cellobject.c">
 		</File>
@@ -632,6 +632,9 @@
 			RelativePath="..\Objects\methodobject.c">
 		</File>
 		<File
+			RelativePath="..\Modules\md5module.c">
+		</File>
+		<File
 			RelativePath="..\Modules\mmapmodule.c">
 		</File>
 		<File
@@ -716,6 +719,9 @@
 			RelativePath="..\Objects\setobject.c">
 		</File>
 		<File
+			RelativePath="..\Modules\sha1module.c">
+		</File>
+		<File
 			RelativePath="..\Modules\sha256module.c">
 		</File>
 		<File

Modified: python/branches/py3k/PCbuild8/pythoncore/pythoncore.vcproj
==============================================================================
--- python/branches/py3k/PCbuild8/pythoncore/pythoncore.vcproj	(original)
+++ python/branches/py3k/PCbuild8/pythoncore/pythoncore.vcproj	Tue Oct 23 00:18:51 2007
@@ -788,6 +788,10 @@
 				>
 			</File>
 			<File
+				RelativePath="..\..\Objects\bytes_methods.c"
+				>
+			</File>
+			<File
 				RelativePath="..\..\Objects\bytesobject.c"
 				>
 			</File>
@@ -974,6 +978,14 @@
 				>
 			</File>
 			<File
+				RelativePath="..\..\Include\bytes_methods.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\Include\bytesobject.h"
+				>
+			</File>
+			<File
 				RelativePath="..\..\Include\cellobject.h"
 				>
 			</File>
@@ -1490,6 +1502,10 @@
 				>
 			</File>
 			<File
+				RelativePath="..\..\Modules\md5module.c"
+				>
+			</File>
+			<File
 				RelativePath="..\..\Modules\mmapmodule.c"
 				>
 			</File>
@@ -1514,6 +1530,10 @@
 				>
 			</File>
 			<File
+				RelativePath="..\..\Modules\sha1module.c"
+				>
+			</File>
+			<File
 				RelativePath="..\..\Modules\sha256module.c"
 				>
 			</File>


More information about the Python-3000-checkins mailing list