SF Patch #864863: Bisect C implementation

(Contributed by Dmitry Vasiliev.)
This commit is contained in:
Raymond Hettinger 2004-01-05 10:13:35 +00:00
parent 23a0f4ed21
commit 0c4102760c
9 changed files with 261 additions and 16 deletions

View file

@ -93,6 +93,10 @@ LINK32=link.exe
# Name "pythoncore - Win32 Debug"
# Begin Source File
SOURCE=..\..\Modules\_bisectmodule.c
# End Source File
# Begin Source File
SOURCE=..\..\Modules\_codecsmodule.c
# End Source File
# Begin Source File

View file

@ -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},