mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
* Move collections.deque() in from the sandbox
* Add unittests, newsitem, and whatsnew * Apply to Queue.py mutex.py threading.py pydoc.py and shlex.py * Docs are forthcoming
This commit is contained in:
parent
141d4e5643
commit
756b3f3c15
15 changed files with 983 additions and 57 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"]) )
|
||||
# high-performance collections
|
||||
exts.append( Extension("collections", ["collectionsmodule.c"]) )
|
||||
# bisect
|
||||
exts.append( Extension("_bisect", ["_bisectmodule.c"]) )
|
||||
# heapq
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue