mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
SF Patch #864863: Bisect C implementation
(Contributed by Dmitry Vasiliev.)
This commit is contained in:
parent
23a0f4ed21
commit
0c4102760c
9 changed files with 261 additions and 16 deletions
|
@ -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
|
||||
|
|
|
@ -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},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue