made Handler extend object git-svn-id: https://svn.apache.org/repos/asf/qpid/proton/trunk@1631733 13f79535-47bb-0310-9956-ffa450edef68
Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/12c6d301 Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/12c6d301 Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/12c6d301 Branch: refs/heads/examples Commit: 12c6d301705087f082e95f779d648c3dff0b101d Parents: 6ca98f5 Author: Rafael H. Schloming <[email protected]> Authored: Tue Oct 14 12:38:48 2014 +0000 Committer: Rafael H. Schloming <[email protected]> Committed: Tue Oct 14 12:38:48 2014 +0000 ---------------------------------------------------------------------- proton-c/bindings/python/proton.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/12c6d301/proton-c/bindings/python/proton.py ---------------------------------------------------------------------- diff --git a/proton-c/bindings/python/proton.py b/proton-c/bindings/python/proton.py index 5bca26c..d9548ed 100644 --- a/proton-c/bindings/python/proton.py +++ b/proton-c/bindings/python/proton.py @@ -3501,7 +3501,7 @@ class Event: def __repr__(self): return "%s(%s)" % (self.type, self.context) -class Handler: +class Handler(object): def on_unhandled(self, event): pass --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
