diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2006-02-14 21:25:29 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2006-02-14 21:25:29 (GMT) |
commit | 9fb181bab3379d7ef55f72f789f37853009e6e1a (patch) | |
tree | 02fad8470f07c43e9679dd2490f5bb08622f9786 | |
parent | 856bf9a4e962ec118bcbfc5150825b256f2b8e2e (diff) | |
download | cpython-9fb181bab3379d7ef55f72f789f37853009e6e1a.zip cpython-9fb181bab3379d7ef55f72f789f37853009e6e1a.tar.gz cpython-9fb181bab3379d7ef55f72f789f37853009e6e1a.tar.bz2 |
Add _lsprof.
-rw-r--r-- | PC/config.c | 2 | ||||
-rw-r--r-- | PCbuild/pythoncore.vcproj | 6 |
2 files changed, 8 insertions, 0 deletions
diff --git a/PC/config.c b/PC/config.c index 962d9b9..45a0977 100644 --- a/PC/config.c +++ b/PC/config.c @@ -66,6 +66,7 @@ extern void init_codecs_jp(void); 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 @@ struct _inittab _PyImport_Inittab[] = { {"_random", init_random}, {"_bisect", init_bisect}, {"_heapq", init_heapq}, + {"_lsprof", init_lsprof}, {"itertools", inititertools}, {"collections", initcollections}, {"_symtable", init_symtable}, diff --git a/PCbuild/pythoncore.vcproj b/PCbuild/pythoncore.vcproj index 9d3776c..3f3e3c0 100644 --- a/PCbuild/pythoncore.vcproj +++ b/PCbuild/pythoncore.vcproj @@ -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 |