[Zodb-checkins] CVS: Packages/ZEO/zrpc - marshal.py:1.11.66.2
Andreas Jung
andreas at andreas-jung.com
Fri Oct 1 03:11:04 EDT 2004
Update of /cvs-repository/Packages/ZEO/zrpc
In directory cvs.zope.org:/tmp/cvs-serv10336/ZEO/zrpc
Modified Files:
Tag: Zope-2_7-branch
marshal.py
Log Message:
reverting change to Pickler() protocol argument
=== Packages/ZEO/zrpc/marshal.py 1.11.66.1 => 1.11.66.2 ===
--- Packages/ZEO/zrpc/marshal.py:1.11.66.1 Fri Oct 1 02:58:47 2004
+++ Packages/ZEO/zrpc/marshal.py Fri Oct 1 03:11:04 2004
@@ -26,7 +26,7 @@
def encode(self, msgid, flags, name, args):
"""Returns an encoded message"""
# (We used to have a global pickler, but that's not thread-safe. :-( )
- pickler = cPickle.Pickler(1)
+ pickler = cPickle.Pickler()
pickler.fast = 1
return pickler.dump((msgid, flags, name, args), 1)
More information about the Zodb-checkins
mailing list