summaryrefslogtreecommitdiff
path: root/qpid/python/qpid/codec.py
diff options
context:
space:
mode:
authorAndrew Stitcher <astitcher@apache.org>2007-09-12 00:37:17 +0000
committerAndrew Stitcher <astitcher@apache.org>2007-09-12 00:37:17 +0000
commit8b455df678dcdac6107fa6861603f99bc1bbe1f5 (patch)
tree751360624179c4996e3070c27fba23346db81306 /qpid/python/qpid/codec.py
parent26cd2b67b267b69ece35458d1d3cc4c4bc5707cc (diff)
downloadqpid-python-8b455df678dcdac6107fa6861603f99bc1bbe1f5.tar.gz
* 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@574735 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/python/qpid/codec.py')
-rw-r--r--qpid/python/qpid/codec.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/python/qpid/codec.py b/qpid/python/qpid/codec.py
index ae113619ae..c1a912f5d0 100644
--- a/qpid/python/qpid/codec.py
+++ b/qpid/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: