On 7/19/07, Guido van Rossum <[EMAIL PROTECTED]> wrote: > How about instead you help with fixing pickling of datetime objects? > This broke when I fixed test_pickle. Rolling back your changes to > datetime pickling didn't seem to help.
Never mind; this was shallow -- cPickle doesn't pickle bytes correctly. I've decided to get rid of cPickle -- someone is writing a replacement for the summer of code anyway. The new approach will be that you always write "import pickle" and this transparently attempts to use the C accelerator if it can be imported, like heapq.py and _heapq.c. -- --Guido van Rossum (home page: http://www.python.org/~guido/) _______________________________________________ Python-3000 mailing list [email protected] http://mail.python.org/mailman/listinfo/python-3000 Unsubscribe: http://mail.python.org/mailman/options/python-3000/archive%40mail-archive.com
