Fix cPickle breakage due to last-minute change to the name of the 'long' type
(it's not called 'int' :-).
diff --git a/Modules/cPickle.c b/Modules/cPickle.c
index 4c55428..98ab500 100644
--- a/Modules/cPickle.c
+++ b/Modules/cPickle.c
@@ -2191,7 +2191,7 @@
 			goto finally;
 		}
 		break;
-        case 'l':
+        case 'i':
 		if (type == &PyLong_Type) {
 			res = save_long(self, args);
 			goto finally;