From e69abcd0ae75a32c6a618c9b86a8a550fb4a8db7 Mon Sep 17 00:00:00 2001 From: Andrew Stitcher Date: Wed, 12 Sep 2007 00:37:17 +0000 Subject: * python/qpid/codec.py Comment typo * cpp/src/qpid/broker/RecoveryManagerImpl.cpp Cruft removal * python/qpid/codec.py * python/qpid/connection.py * cpp/src/qpid/framing/AMQFrame.h * cpp/src/qpid/framing/AMQFrame.cpp Initial implementation of 0-10 framing - This uses the new 12 byte frame header, but doesn't support splitting segments/framesets over multiple frames yet. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@574735 13f79535-47bb-0310-9956-ffa450edef68 --- python/qpid/codec.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python/qpid/codec.py') diff --git a/python/qpid/codec.py b/python/qpid/codec.py index ae113619ae..c1a912f5d0 100644 --- a/python/qpid/codec.py +++ b/python/qpid/codec.py @@ -53,7 +53,7 @@ class Codec: def read(self, n): """ - reads in 'n' bytes from the stream. Can raise EFO exception + reads in 'n' bytes from the stream. Can raise EOF exception """ data = self.stream.read(n) if n > 0 and len(data) == 0: -- cgit v1.2.1