diff options
| author | Alan Conway <aconway@apache.org> | 2007-03-16 22:54:11 +0000 |
|---|---|---|
| committer | Alan Conway <aconway@apache.org> | 2007-03-16 22:54:11 +0000 |
| commit | 15256f1f40f96392028f6182cecf29ff334dbe72 (patch) | |
| tree | 3c443c2444ee44d42132bbf164d5ee2746beeda8 /python/qpid/connection.py | |
| parent | 70e06534778acde7faae8298775857e5a0c56b5a (diff) | |
| download | qpid-python-15256f1f40f96392028f6182cecf29ff334dbe72.tar.gz | |
Merged revisions 500305 via svnmerge from
https://svn.apache.org/repos/asf/incubator/qpid/branches/qpid.0-9
........
r500305 | gsim | 2007-01-26 13:51:21 -0500 (Fri, 26 Jan 2007) | 3 lines
Updates to use message class in place of basic.
........
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@519171 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/qpid/connection.py')
| -rw-r--r-- | python/qpid/connection.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/python/qpid/connection.py b/python/qpid/connection.py index 75fb134760..fb1e0927f0 100644 --- a/python/qpid/connection.py +++ b/python/qpid/connection.py @@ -204,6 +204,9 @@ class Request(Frame): method = Method.decode(spec, dec, size - 20) return Request(id, mark, method) + def __str__(self): + return "[%s] Request(%s) %s" % (self.channel, self.id, self.method) + class Response(Frame): type = "frame_response" |
