[Python-Dev] cPickle.c out-of-date w.r.t. version in Zope 2.2.1

Skip Montanaro skip@mojam.com (Skip Montanaro)
Fri, 1 Sep 2000 12:24:58 -0500 (CDT)


    >> The cPickle.c changes look to be:
    >> * ANSIfication.
    >> * API changes.
    >> * Support for Unicode strings.

    MAL> Huh ? There is support for Unicode objects in Python's cPickle.c...
    MAL> does Zope's version do something different ?

Zope is still running 1.5.2 and thus has a version of cPickle that is at
least that old.  The RCS revision string is

     * $Id: cPickle.c,v 1.72 2000/05/09 18:05:09 jim Exp $

I saw new unicode functions in the Python 2.0 version of cPickle that
weren't in the version distributed with Zope 2.2.1.  Here's a grep buffer
from XEmacs:

    cd /home/dolphin/skip/src/Zope/lib/Components/cPickle/
    grep -n -i unicode cPickle.c /dev/null

    grep finished with no matches found at Fri Sep  1 12:39:57

Skip