[Zodb-checkins] CVS: ZODB3/ZEO/zrpc - marshal.py:1.4
Guido van Rossum
guido@python.org
Fri, 30 Aug 2002 18:23:29 -0400
Update of /cvs-repository/ZODB3/ZEO/zrpc
In directory cvs.zope.org:/tmp/cvs-serv25400
Modified Files:
marshal.py
Log Message:
This wasn't importing DecodingError.
=== ZODB3/ZEO/zrpc/marshal.py 1.3 => 1.4 ===
--- ZODB3/ZEO/zrpc/marshal.py:1.3 Fri Aug 30 17:41:35 2002
+++ ZODB3/ZEO/zrpc/marshal.py Fri Aug 30 18:23:26 2002
@@ -16,7 +16,7 @@
import struct
import types
-from ZEO.zrpc.error import ZRPCError
+from ZEO.zrpc.error import ZRPCError, DecodingError
class Marshaller:
"""Marshal requests and replies to second across network"""