mirror of
https://github.com/python/cpython.git
synced 2025-11-01 06:01:29 +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 @@ def detect_modules(self):
|
|||
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