[Python-3000-checkins] r53424 - in python/branches/p3yk: BROKEN_TESTS Modules/cPickle.c

guido.van.rossum python-3000-checkins at python.org
Sun Jan 14 05:02:17 CET 2007


Author: guido.van.rossum
Date: Sun Jan 14 05:02:16 2007
New Revision: 53424

Modified:
   python/branches/p3yk/BROKEN_TESTS
   python/branches/p3yk/Modules/cPickle.c
Log:
Fix cPickle breakage due to last-minute change to the name of the 'long' type
(it's not called 'int' :-).


Modified: python/branches/p3yk/BROKEN_TESTS
==============================================================================
--- python/branches/p3yk/BROKEN_TESTS	(original)
+++ python/branches/p3yk/BROKEN_TESTS	Sun Jan 14 05:02:16 2007
@@ -1,4 +1,3 @@
-test_descr -- can't pickle int objects?!?!
-test_pickletools -- ???
+test_pickletools -- Test probably needs to be fixed
 test_socket -- OverflowError: can't convert negative value to unsigned int
 test_sqlite -- ???

Modified: python/branches/p3yk/Modules/cPickle.c
==============================================================================
--- python/branches/p3yk/Modules/cPickle.c	(original)
+++ python/branches/p3yk/Modules/cPickle.c	Sun Jan 14 05:02:16 2007
@@ -2191,7 +2191,7 @@
 			goto finally;
 		}
 		break;
-        case 'l':
+        case 'i':
 		if (type == &PyLong_Type) {
 			res = save_long(self, args);
 			goto finally;


More information about the Python-3000-checkins mailing list