summaryrefslogtreecommitdiff
path: root/python/qpid/codec010.py
diff options
context:
space:
mode:
authorRafael H. Schloming <rhs@apache.org>2010-09-09 18:49:35 +0000
committerRafael H. Schloming <rhs@apache.org>2010-09-09 18:49:35 +0000
commit8be0a907744da1d2c5dbe5cfb1cbce49f217ad72 (patch)
tree959c341bcef90bb599ecff6a537aa1ac40e78eb8 /python/qpid/codec010.py
parentb7b96077b44dd5c24539409aabd0f2b8dab0f0f4 (diff)
downloadqpid-python-8be0a907744da1d2c5dbe5cfb1cbce49f217ad72.tar.gz
fixed bool encoding
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@995537 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/qpid/codec010.py')
-rw-r--r--python/qpid/codec010.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/python/qpid/codec010.py b/python/qpid/codec010.py
index 682743df19..d65f8c36f5 100644
--- a/python/qpid/codec010.py
+++ b/python/qpid/codec010.py
@@ -36,6 +36,7 @@ def map_str(s):
class Codec(Packer):
ENCODINGS = {
+ bool: direct("boolean"),
unicode: direct("str16"),
str: map_str,
buffer: direct("vbin32"),