mirror of
https://github.com/python/cpython.git
synced 2025-07-19 01:05:26 +00:00
Restore _pickle module accelerator module.
Removed Windows support temporarily. 64bit bug with integer unpickling is now fixed.
This commit is contained in:
parent
829b99195d
commit
ca2d610dba
8 changed files with 4683 additions and 126 deletions
3
setup.py
3
setup.py
|
@ -422,6 +422,9 @@ class PyBuildExt(build_ext):
|
|||
exts.append( Extension("_functools", ["_functoolsmodule.c"]) )
|
||||
# Memory-based IO accelerator modules
|
||||
exts.append( Extension("_bytesio", ["_bytesio.c"]) )
|
||||
exts.append( Extension("_stringio", ["_stringio.c"]) )
|
||||
# C-optimized pickle replacement
|
||||
exts.append( Extension("_pickle", ["_pickle.c"]) )
|
||||
# atexit
|
||||
exts.append( Extension("atexit", ["atexitmodule.c"]) )
|
||||
# _json speedups
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue