Return-Path: X-Original-To: apmail-qpid-commits-archive@www.apache.org Delivered-To: apmail-qpid-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 4454018109 for ; Mon, 22 Jun 2015 12:57:06 +0000 (UTC) Received: (qmail 48527 invoked by uid 500); 22 Jun 2015 12:57:05 -0000 Delivered-To: apmail-qpid-commits-archive@qpid.apache.org Received: (qmail 48473 invoked by uid 500); 22 Jun 2015 12:57:05 -0000 Mailing-List: contact commits-help@qpid.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@qpid.apache.org Delivered-To: mailing list commits@qpid.apache.org Received: (qmail 47719 invoked by uid 99); 22 Jun 2015 12:57:05 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 22 Jun 2015 12:57:05 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 37F7EE362A; Mon, 22 Jun 2015 12:57:05 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: kgiusti@apache.org To: commits@qpid.apache.org Date: Mon, 22 Jun 2015 12:57:37 -0000 Message-Id: In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [34/34] qpid-proton git commit: PROTON-490: Merge branch 'kgiusti-python3' PROTON-490: Merge branch 'kgiusti-python3' Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/17594bc3 Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/17594bc3 Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/17594bc3 Branch: refs/heads/master Commit: 17594bc3fbb3ff863e9b8d1349b3cdeb90d1a9f6 Parents: 653f4e5 e7f49fa Author: Ken Giusti Authored: Mon Jun 22 08:50:24 2015 -0400 Committer: Ken Giusti Committed: Mon Jun 22 08:50:24 2015 -0400 ---------------------------------------------------------------------- examples/python/abstract_server.py | 3 +- examples/python/client.py | 3 +- examples/python/client_http.py | 3 +- examples/python/db_common.py | 6 +- examples/python/db_ctrl.py | 7 +- examples/python/db_recv.py | 3 +- examples/python/db_send.py | 18 ++- examples/python/direct_recv.py | 3 +- examples/python/direct_send.py | 3 +- examples/python/helloworld.py | 5 +- examples/python/helloworld_blocking.py | 5 +- examples/python/helloworld_direct.py | 5 +- examples/python/helloworld_direct_tornado.py | 5 +- examples/python/helloworld_tornado.py | 5 +- examples/python/messenger/async.py | 5 +- examples/python/messenger/client.py | 7 +- examples/python/messenger/recv.py | 7 +- examples/python/messenger/recv_async.py | 11 +- examples/python/messenger/send.py | 5 +- examples/python/messenger/send_async.py | 9 +- examples/python/messenger/server.py | 5 +- examples/python/proton_server.py | 3 +- examples/python/queue_browser.py | 3 +- examples/python/reactor/cat.py | 3 +- examples/python/reactor/count-randomly.py | 9 +- examples/python/reactor/counter.py | 7 +- examples/python/reactor/delegates.py | 5 +- examples/python/reactor/echo.py | 5 +- examples/python/reactor/global-logger.py | 9 +- examples/python/reactor/goodbye-world.py | 5 +- examples/python/reactor/handlers.py | 7 +- examples/python/reactor/hello-world.py | 3 +- examples/python/reactor/reactor-logger.py | 7 +- examples/python/reactor/recv.py | 3 +- examples/python/reactor/scheduling.py | 7 +- examples/python/reactor/tornado-hello-world.py | 3 +- examples/python/reactor/unhandled.py | 3 +- examples/python/recurring_timer.py | 5 +- examples/python/recurring_timer_tornado.py | 5 +- examples/python/selected_recv.py | 5 +- examples/python/server.py | 5 +- examples/python/server_direct.py | 7 +- examples/python/server_tx.py | 5 +- examples/python/simple_recv.py | 3 +- examples/python/simple_send.py | 3 +- examples/python/sync_client.py | 3 +- examples/python/test_examples.py | 55 ++++--- examples/python/tx_recv.py | 3 +- examples/python/tx_recv_interactive.py | 11 +- examples/python/tx_send.py | 3 +- proton-c/CMakeLists.txt | 5 +- proton-c/bindings/python/cproton.i | 114 +++++++++++---- proton-c/bindings/python/proton/__init__.py | 117 +++++++++------ proton-c/bindings/python/proton/_compat.py | 84 +++++++++++ proton-c/bindings/python/proton/handlers.py | 3 +- proton-c/bindings/python/proton/reactor.py | 27 ++-- proton-c/bindings/python/proton/utils.py | 14 +- proton-c/bindings/python/proton/wrapper.py | 12 +- proton-c/bindings/python/setup.py | 29 +++- proton-c/bindings/python/tox.ini | 23 +-- proton-c/mllib/__init__.py | 40 ++--- proton-c/mllib/dom.py | 16 +- proton-c/mllib/parsers.py | 40 +---- proton-c/mllib/transforms.py | 8 +- proton-c/src/codec/encodings.h.py | 17 ++- proton-c/src/protocol.h.py | 91 ++++++------ proton-j/src/main/resources/cmessage.py | 2 +- tests/python/proton-test | 32 ++-- tests/python/proton_tests/codec.py | 32 ++-- tests/python/proton_tests/common.py | 35 ++++- tests/python/proton_tests/engine.py | 153 +++++++++++--------- tests/python/proton_tests/interop.py | 8 +- tests/python/proton_tests/message.py | 9 +- tests/python/proton_tests/messenger.py | 15 +- tests/python/proton_tests/reactor.py | 3 +- tests/python/proton_tests/sasl.py | 19 +-- tests/python/proton_tests/soak.py | 3 +- tests/python/proton_tests/ssl.py | 11 +- tests/python/proton_tests/transport.py | 66 +++++---- tests/python/proton_tests/url.py | 3 +- tests/python/proton_tests/utils.py | 2 +- tests/smoke/recv.py | 3 +- tests/smoke/send.py | 5 +- tests/tools/apps/python/msgr-recv.py | 6 + tests/tools/apps/python/msgr-send.py | 6 + tests/tools/soak-check | 5 +- 86 files changed, 858 insertions(+), 518 deletions(-) ---------------------------------------------------------------------- --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org For additional commands, e-mail: commits-help@qpid.apache.org