mirror of
https://github.com/python/cpython.git
synced 2025-07-19 01:05:26 +00:00
Move itertools module from the sandbox and into production.
This commit is contained in:
parent
506be287aa
commit
96ef8115dd
8 changed files with 2027 additions and 0 deletions
2
setup.py
2
setup.py
|
@ -324,6 +324,8 @@ class PyBuildExt(build_ext):
|
|||
libraries=math_libs) )
|
||||
# random number generator implemented in C
|
||||
exts.append( Extension("_random", ["_randommodule.c"]) )
|
||||
# fast iterator tools implemented in C
|
||||
exts.append( Extension("itertools", ["itertoolsmodule.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