diff options
author | Raymond Hettinger <python@rcn.com> | 2004-01-05 10:13:35 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2004-01-05 10:13:35 (GMT) |
commit | 0c4102760c440af3e7b575b0fd27fe25549641a2 (patch) | |
tree | d7cb942e0f91852f6a2beb8a7bf17c69bbc75e23 /PC | |
parent | 23a0f4ed21205a0b585ee66bd8e1405b38680319 (diff) | |
download | cpython-0c4102760c440af3e7b575b0fd27fe25549641a2.zip cpython-0c4102760c440af3e7b575b0fd27fe25549641a2.tar.gz cpython-0c4102760c440af3e7b575b0fd27fe25549641a2.tar.bz2 |
SF Patch #864863: Bisect C implementation
(Contributed by Dmitry Vasiliev.)
Diffstat (limited to 'PC')
-rw-r--r-- | PC/VC6/pythoncore.dsp | 4 | ||||
-rw-r--r-- | PC/config.c | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/PC/VC6/pythoncore.dsp b/PC/VC6/pythoncore.dsp index dfc2bad..0e8b42a 100644 --- a/PC/VC6/pythoncore.dsp +++ b/PC/VC6/pythoncore.dsp @@ -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
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}, |