Repository: qpid-proton Updated Branches: refs/heads/master 5e5bb2e0e -> 5ada2ec00
PROTON-1061: Fixed error in Python binding in which int types were mapped to AMQP type long. Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/5ada2ec0 Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/5ada2ec0 Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/5ada2ec0 Branch: refs/heads/master Commit: 5ada2ec00b30b67d4f182d6c418011c0b77ca1ca Parents: 5e5bb2e Author: Kim van der Riet <[email protected]> Authored: Tue Feb 9 09:38:58 2016 -0500 Committer: Kim van der Riet <[email protected]> Committed: Tue Feb 9 09:38:58 2016 -0500 ---------------------------------------------------------------------- proton-c/bindings/python/proton/__init__.py | 1 - 1 file changed, 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/5ada2ec0/proton-c/bindings/python/proton/__init__.py ---------------------------------------------------------------------- diff --git a/proton-c/bindings/python/proton/__init__.py b/proton-c/bindings/python/proton/__init__.py index 16d7a74..5ffede8 100644 --- a/proton-c/bindings/python/proton/__init__.py +++ b/proton-c/bindings/python/proton/__init__.py @@ -2214,7 +2214,6 @@ class Data: byte: put_byte, short: put_short, int32: put_int, - int: put_long, long: put_long, float32: put_float, float: put_double, --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
