diff options
Diffstat (limited to 'PC/config.c')
-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 7bf31b0..15671f6 100644 --- a/PC/config.c +++ b/PC/config.c @@ -47,6 +47,7 @@ extern void initzipimport(void); extern void init_random(void); extern void inititertools(void); extern void initheapq(void); +extern void init_bisect(void); extern void init_symtable(void); extern void initmmap(void); extern void init_csv(void); @@ -106,6 +107,7 @@ struct _inittab _PyImport_Inittab[] = { {"_weakref", init_weakref}, {"_hotshot", init_hotshot}, {"_random", init_random}, + {"_bisect", init_bisect}, {"heapq", initheapq}, {"itertools", inititertools}, {"_symtable", init_symtable}, |