Lisandro Dalcin wrote: > However, I am having trouble with 'pickle', but perhaps this is only > my fault, i just imported pickle instead of cPickle (and all this in a > C extension module). I am using that because cPickle seems to be not > available in the py3k-struni.
The pickle module is broken as well. The cPickle module won't be available in Python 3000. The C optimization of the cPickle module are going to be integrated into the pickle module during a Google Summer of Code project. The new pickle code will be subclass-able (cPickle couldn't be subclassed) but will have optimized C code to speed up pickling and unpickling. Christian _______________________________________________ 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
