mirror of
https://github.com/python/cpython.git
synced 2025-11-01 02:38:53 +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
2
setup.py
2
setup.py
|
|
@ -322,6 +322,8 @@ class PyBuildExt(build_ext):
|
|||
exts.append( Extension("_random", ["_randommodule.c"]) )
|
||||
# fast iterator tools implemented in C
|
||||
exts.append( Extension("itertools", ["itertoolsmodule.c"]) )
|
||||
# bisect
|
||||
exts.append( Extension("_bisect", ["_bisectmodule.c"]) )
|
||||
# heapq
|
||||
exts.append( Extension("heapq", ["heapqmodule.c"]) )
|
||||
# operator.add() and similar goodies
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue