mirror of
https://github.com/python/cpython.git
synced 2025-09-13 20:27:05 +00:00
Backport fast alternate io.BytesIO implementation.
Merged r62778, r62779, r62802, r62806, r62807, r62808, r62809, r62844, r62846, r62952, r62956.
This commit is contained in:
parent
81673b7b63
commit
1aed624f7c
10 changed files with 1284 additions and 64 deletions
2
setup.py
2
setup.py
|
@ -436,6 +436,8 @@ class PyBuildExt(build_ext):
|
|||
exts.append( Extension('operator', ['operator.c']) )
|
||||
# Python 3.0 _fileio module
|
||||
exts.append( Extension("_fileio", ["_fileio.c"]) )
|
||||
# Python 3.0 _bytesio module
|
||||
exts.append( Extension("_bytesio", ["_bytesio.c"]) )
|
||||
# _functools
|
||||
exts.append( Extension("_functools", ["_functoolsmodule.c"]) )
|
||||
# _json speedups
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue