mirror of
https://github.com/python/cpython.git
synced 2025-07-31 23:23:11 +00:00
Added future_builtins, which contains PEP 3127 compatible versions of hex() and oct().
This commit is contained in:
parent
73d7963242
commit
a73fbe791d
6 changed files with 113 additions and 0 deletions
3
setup.py
3
setup.py
|
@ -417,6 +417,9 @@ class PyBuildExt(build_ext):
|
|||
libraries=math_libs) )
|
||||
exts.append( Extension('datetime', ['datetimemodule.c', 'timemodule.c'],
|
||||
libraries=math_libs) )
|
||||
# code that will be builtins in the future, but conflict with the
|
||||
# current builtins
|
||||
exts.append( Extension('future_builtins', ['future_builtins.c']) )
|
||||
# random number generator implemented in C
|
||||
exts.append( Extension("_random", ["_randommodule.c"]) )
|
||||
# fast iterator tools implemented in C
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue