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 /PC | |
parent | 856bf9a4e962ec118bcbfc5150825b256f2b8e2e (diff) | |
download | cpython-9fb181bab3379d7ef55f72f789f37853009e6e1a.zip cpython-9fb181bab3379d7ef55f72f789f37853009e6e1a.tar.gz cpython-9fb181bab3379d7ef55f72f789f37853009e6e1a.tar.bz2 |
Add _lsprof.
Diffstat (limited to 'PC')
-rw-r--r-- | PC/config.c | 2 |
1 files changed, 2 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}, |