diff options
author | Andrew Stitcher <astitcher@apache.org> | 2007-09-12 00:37:17 +0000 |
---|---|---|
committer | Andrew Stitcher <astitcher@apache.org> | 2007-09-12 00:37:17 +0000 |
commit | e69abcd0ae75a32c6a618c9b86a8a550fb4a8db7 (patch) | |
tree | a759c750ee6abe74c98f6a2bb1c341e35551e09a /python/qpid/codec.py | |
parent | bdba810bed79ed16ba0e73ff852c7cd41aa39c8b (diff) | |
download | qpid-python-e69abcd0ae75a32c6a618c9b86a8a550fb4a8db7.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/qpid@574735 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/qpid/codec.py')
-rw-r--r-- | python/qpid/codec.py | 2 |
1 files changed, 1 insertions, 1 deletions
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: |