mirror of
https://github.com/python/cpython.git
synced 2025-07-19 01:05:26 +00:00
Issue 2917: Merge the pickle and cPickle module.
This commit is contained in:
parent
1e637b7373
commit
cc313061a5
8 changed files with 4685 additions and 126 deletions
2
setup.py
2
setup.py
|
@ -422,6 +422,8 @@ class PyBuildExt(build_ext):
|
|||
exts.append( Extension("_functools", ["_functoolsmodule.c"]) )
|
||||
# Memory-based IO accelerator modules
|
||||
exts.append( Extension("_bytesio", ["_bytesio.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