Cpickle module... not in Lib installs

Marc 'BlackJack' Rintsch bj_666 at gmx.net
Fri Mar 25 19:26:04 EST 2005


In <1111795334.636135.289060 at g14g2000cwa.googlegroups.com>, 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



More information about the Python-list mailing list