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
commit42021e9690fb54be369b34911841fb8c7e044684 (patch)
tree959c341bcef90bb599ecff6a537aa1ac40e78eb8 /python/qpid/codec010.py
parent1b0c4065a0e6906dfc12c123af8f411397c815cf (diff)
downloadqpid-python-42021e9690fb54be369b34911841fb8c7e044684.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"),