In <[EMAIL PROTECTED]>, Marcus Lowland
wrote:

> Hello, I'm fairly new to python and have read about and wanted to begin
> experimenting with cpickle. As I understand, this should be a native
> module in the python library. I have python 2.3 and now just installed
> 2.4, but am not able to import or find cpickle.py in any directory of
> the install, or in the previous version (pickle.py is present and
> imports correctly). Is there a seperate module package that must be
> downloaded and installed... or am I overlooking the obvious.

Yes, the spelling:

>>> import cPickle
>>> cPickle.__file__
'/usr/lib/python2.4/lib-dynload/cPickle.so'

Ciao,
        Marc 'BlackJack' Rintsch
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to