Files
cpython/Lib
Guido van Rossum f048a8f6d7 Pickler.save(): Fix for SF bug #494904: Cannot pickle a class with a
metaclass, reported by Dan Parisien.

Objects that are instances of custom metaclasses, i.e. whose class is
a subclass of 'type', should be pickled the same as new-style classes
(objects whose class is 'type').  This can't be done through a
dispatch table entry, and the __reduce__ trick doesn't work for these,
since it finds the unbound __reduce__ for instances of the class
(inherited from 'object').  So check explicitly using issubclass().
2001-12-19 16:55:02 +00:00
..
2001-12-18 21:08:15 +00:00
2001-08-09 12:48:17 +00:00
2001-08-09 12:33:32 +00:00
2001-04-08 07:23:44 +00:00
2001-08-09 21:40:30 +00:00
2001-10-18 21:57:37 +00:00
2001-11-24 21:04:31 +00:00
2001-10-04 05:36:56 +00:00
2001-03-16 08:29:48 +00:00
2001-01-20 23:34:12 +00:00
2001-08-13 14:55:17 +00:00
2001-01-20 23:34:12 +00:00
2001-12-12 06:20:34 +00:00
2001-01-23 15:35:05 +00:00
2001-11-13 21:51:26 +00:00
2001-02-09 10:18:37 +00:00
2001-10-30 05:56:40 +00:00
2001-01-24 06:27:27 +00:00
2001-06-19 00:26:25 +00:00
2001-02-09 09:48:45 +00:00
2001-05-29 04:27:01 +00:00
2001-08-13 14:50:44 +00:00
2001-02-09 09:48:45 +00:00
2001-02-09 09:39:08 +00:00
2001-07-04 10:15:58 +00:00
2001-02-18 03:30:53 +00:00
2001-10-18 20:58:25 +00:00
2001-10-30 05:56:40 +00:00
2001-08-02 07:15:29 +00:00
2001-05-29 06:06:54 +00:00
2001-02-12 02:00:42 +00:00
2001-10-24 20:22:40 +00:00
2001-02-18 03:30:53 +00:00
2001-02-15 22:15:14 +00:00
2001-02-15 22:15:14 +00:00
2001-02-15 22:15:14 +00:00
2001-02-15 22:15:14 +00:00
2001-02-15 22:15:14 +00:00
2001-10-28 20:15:40 +00:00
2001-02-18 03:30:53 +00:00
2001-02-15 22:15:14 +00:00
2001-01-15 01:36:40 +00:00
2001-01-15 01:36:40 +00:00
2001-09-18 02:26:39 +00:00
2001-12-17 10:13:17 +00:00
2001-10-24 20:42:55 +00:00
2001-12-06 06:23:26 +00:00