On 9/11/07, Marcin 'Qrczak' Kowalczyk <[EMAIL PROTECTED]> wrote: > Python 3.0a1 (py3k, Sep 8 2007, 15:57:56) > [GCC 4.2.1 20070719 (release) (PLD-Linux)] on linux2 > Type "help", "copyright", "credits" or "license" for more information. > >>> import pickle > >>> help(pickle) > Traceback (most recent call last): > [...] > File "/usr/local/lib/python3.0/pydoc.py", line 954, in repr1 > return getattr(self, methodname)(x, level) > File "/usr/local/lib/python3.0/repr.py", line 78, in repr_dict > for key in islice(sorted(x), self.maxdict): > TypeError: unorderable types: type() < type()
Mind reporting this on bugs.python.org? > BTW, is cPickle officially gone and should pickle be used instead? Yes. There will be a transparent accellerator written in C, but the public API will be called "pickle". -- --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
