[Python-checkins] r42365 - in python/trunk: PC/config.c PCbuild/pythoncore.vcproj

martin.v.loewis python-checkins at python.org
Tue Feb 14 22:25:30 CET 2006


Author: martin.v.loewis
Date: Tue Feb 14 22:25:29 2006
New Revision: 42365

Modified:
   python/trunk/PC/config.c
   python/trunk/PCbuild/pythoncore.vcproj
Log:
Add _lsprof.

Modified: python/trunk/PC/config.c
==============================================================================
--- python/trunk/PC/config.c	(original)
+++ python/trunk/PC/config.c	Tue Feb 14 22:25:29 2006
@@ -66,6 +66,7 @@
 extern void init_codecs_kr(void);
 extern void init_codecs_tw(void);
 extern void init_subprocess(void);
+extern void init_lsprof(void);
 
 /* tools/freeze/makeconfig.py marker for additional "extern" */
 /* -- ADDMODULE MARKER 1 -- */
@@ -121,6 +122,7 @@
 	{"_random", init_random},
         {"_bisect", init_bisect},
         {"_heapq", init_heapq},
+	{"_lsprof", init_lsprof},
 	{"itertools", inititertools},
         {"collections", initcollections},
 	{"_symtable", init_symtable},

Modified: python/trunk/PCbuild/pythoncore.vcproj
==============================================================================
--- python/trunk/PCbuild/pythoncore.vcproj	(original)
+++ python/trunk/PCbuild/pythoncore.vcproj	Tue Feb 14 22:25:29 2006
@@ -377,6 +377,9 @@
 			RelativePath="..\Modules\_localemodule.c">
 		</File>
 		<File
+			RelativePath="..\Modules\_lsprof.c">
+		</File>
+		<File
 			RelativePath="..\Modules\_randommodule.c">
 		</File>
 		<File
@@ -713,6 +716,9 @@
 			RelativePath="..\Modules\rgbimgmodule.c">
 		</File>
 		<File
+			RelativePath="..\Modules\rotatingtree.c">
+		</File>
+		<File
 			RelativePath="..\Objects\setobject.c">
 		</File>
 		<File


More information about the Python-checkins mailing list