mirror of
https://github.com/python/cpython.git
synced 2025-07-19 01:05:26 +00:00
* Restore the pure python version of heapq.py.
* Mark the C version as private and only use when available.
This commit is contained in:
parent
61e40bd897
commit
c46cb2a1a9
4 changed files with 628 additions and 3 deletions
2
setup.py
2
setup.py
|
@ -327,7 +327,7 @@ class PyBuildExt(build_ext):
|
|||
# bisect
|
||||
exts.append( Extension("_bisect", ["_bisectmodule.c"]) )
|
||||
# heapq
|
||||
exts.append( Extension("heapq", ["heapqmodule.c"]) )
|
||||
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