diff options
author | Alexandre Vassalotti <alexandre@peadrop.com> | 2008-06-11 22:43:06 +0000 |
---|---|---|
committer | Alexandre Vassalotti <alexandre@peadrop.com> | 2008-06-11 22:43:06 +0000 |
commit | cc313061a5b45c12e9772e2f9f2ae623fc00e31d (patch) | |
tree | 2671b4f3883c561c60e1578d4b4e86590842b79e /setup.py | |
parent | 1e637b7373c6a183524b2bfa16d7702ef451e632 (diff) | |
download | cpython-git-cc313061a5b45c12e9772e2f9f2ae623fc00e31d.tar.gz |
Issue 2917: Merge the pickle and cPickle module.
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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 |