mirror of
https://github.com/python/cpython.git
synced 2025-11-01 10:45:30 +00:00
Convert heapq.py to a C implementation.
This commit is contained in:
parent
1021c44b41
commit
b3af1813eb
7 changed files with 367 additions and 256 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"]) )
|
||||
# heapq
|
||||
exts.append( Extension("heapq", ["heapqmodule.c"]) )
|
||||
# operator.add() and similar goodies
|
||||
exts.append( Extension('operator', ['operator.c']) )
|
||||
# Python C API test module
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue