Fixed cPickle, by restoring some of the deleted code.
-This line, and those below, will be ignored--

M    setup.py
M    Modules/cPickle.c
diff --git a/setup.py b/setup.py
index 1dac242..5d71181 100644
--- a/setup.py
+++ b/setup.py
@@ -430,7 +430,7 @@
 
         # cStringIO and cPickle
         exts.append( Extension('cStringIO', ['cStringIO.c']) )
-        ##exts.append( Extension('cPickle', ['cPickle.c']) )
+        exts.append( Extension('cPickle', ['cPickle.c']) )
 
         # Memory-mapped files (also works on Win32).
         if platform not in ['atheos', 'mac']: