[Python-modules-commits] [python-trezor] branch upstream updated (7158c20 -> 25ba939)

Tristan Seligmann mithrandi at moszumanska.debian.org
Mon Aug 8 03:12:42 UTC 2016


This is an automated email from the git hooks/post-receive script.

mithrandi pushed a change to branch upstream
in repository python-trezor.

      from  7158c20   Import python-trezor_0.6.10.orig.tar.gz.
      adds  0690612   Import python-trezor_0.6.11.orig.tar.gz
       new  25ba939   Import python-trezor_0.6.13.orig.tar.gz

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 MANIFEST.in                          |   1 +
 PKG-INFO                             |   2 +-
 README.rst                           |  28 +-
 setup.py                             |   4 +-
 tests/common.py                      |  41 ++
 tests/config.py                      |  37 ++
 tests/run-separate.sh                |   5 +
 tests/run.sh                         |   3 +
 tests/test_basic.py                  |  36 ++
 tests/test_bip32_speed.py            |  56 +++
 tests/test_debuglink.py              |  42 ++
 tests/test_ecies.py                  | 134 ++++++
 tests/test_msg_applysettings.py      |  78 ++++
 tests/test_msg_changepin.py          | 204 +++++++++
 tests/test_msg_cipherkeyvalue.py     |  74 ++++
 tests/test_msg_clearsession.py       |  39 ++
 tests/test_msg_estimatetxsize.py     |  34 ++
 tests/test_msg_getaddress.py         |  44 ++
 tests/test_msg_getaddress_show.py    |  49 ++
 tests/test_msg_getentropy.py         |  34 ++
 tests/test_msg_getpublickey.py       |  28 ++
 tests/test_msg_loaddevice.py         |  88 ++++
 tests/test_msg_ping.py               |  48 ++
 tests/test_msg_recoverydevice.py     | 157 +++++++
 tests/test_msg_resetdevice.py        | 206 +++++++++
 tests/test_msg_signidentity.py       |  73 +++
 tests/test_msg_signmessage.py        |  45 ++
 tests/test_msg_signtx.py             | 598 +++++++++++++++++++++++++
 tests/test_msg_simplesigntx.py       | 360 +++++++++++++++
 tests/test_msg_verifymessage.py      | 132 ++++++
 tests/test_msg_wipedevice.py         |  25 ++
 tests/test_multisig.py               | 224 ++++++++++
 tests/test_multisig_change.py        | 355 +++++++++++++++
 tests/test_op_return.py              |  92 ++++
 tests/test_protect_call.py           | 117 +++++
 tests/test_protection_levels.py      | 196 ++++++++
 tests/test_zerosig.py                |  88 ++++
 PKG-INFO => trezor.egg-info/PKG-INFO |   2 +-
 trezor.egg-info/SOURCES.txt          |  62 +++
 trezor.egg-info/dependency_links.txt |   1 +
 trezor.egg-info/not-zip-safe         |   1 +
 trezor.egg-info/requires.txt         |   4 +
 trezor.egg-info/top_level.txt        |   1 +
 trezorctl                            | 188 ++++++--
 trezorlib/ckd_public.py              |  10 +-
 trezorlib/client.py                  | 120 +++--
 trezorlib/debuglink.py               |  28 +-
 trezorlib/mapping.py                 |   4 +-
 trezorlib/messages_pb2.py            | 836 +++++++++++++++++++++++++++++++----
 trezorlib/protobuf_json.py           |  11 +-
 trezorlib/qt/pinmatrix.py            |  12 +-
 trezorlib/tools.py                   |  10 +-
 trezorlib/transport.py               |  43 +-
 trezorlib/transport_bridge.py        |  15 +-
 trezorlib/transport_fake.py          |  12 +-
 trezorlib/transport_hid.py           |  91 ++--
 trezorlib/transport_pipe.py          |  39 +-
 trezorlib/transport_serial.py        |  20 +-
 trezorlib/transport_socket.py        |  44 +-
 trezorlib/tx_api.py                  |  65 ++-
 trezorlib/types_pb2.py               |  83 ++--
 61 files changed, 5090 insertions(+), 389 deletions(-)
 create mode 100644 MANIFEST.in
 create mode 100644 tests/common.py
 create mode 100644 tests/config.py
 create mode 100755 tests/run-separate.sh
 create mode 100755 tests/run.sh
 create mode 100644 tests/test_basic.py
 create mode 100644 tests/test_bip32_speed.py
 create mode 100644 tests/test_debuglink.py
 create mode 100644 tests/test_ecies.py
 create mode 100644 tests/test_msg_applysettings.py
 create mode 100644 tests/test_msg_changepin.py
 create mode 100644 tests/test_msg_cipherkeyvalue.py
 create mode 100644 tests/test_msg_clearsession.py
 create mode 100644 tests/test_msg_estimatetxsize.py
 create mode 100644 tests/test_msg_getaddress.py
 create mode 100644 tests/test_msg_getaddress_show.py
 create mode 100644 tests/test_msg_getentropy.py
 create mode 100644 tests/test_msg_getpublickey.py
 create mode 100644 tests/test_msg_loaddevice.py
 create mode 100644 tests/test_msg_ping.py
 create mode 100644 tests/test_msg_recoverydevice.py
 create mode 100644 tests/test_msg_resetdevice.py
 create mode 100644 tests/test_msg_signidentity.py
 create mode 100644 tests/test_msg_signmessage.py
 create mode 100644 tests/test_msg_signtx.py
 create mode 100644 tests/test_msg_simplesigntx.py
 create mode 100644 tests/test_msg_verifymessage.py
 create mode 100644 tests/test_msg_wipedevice.py
 create mode 100644 tests/test_multisig.py
 create mode 100644 tests/test_multisig_change.py
 create mode 100644 tests/test_op_return.py
 create mode 100644 tests/test_protect_call.py
 create mode 100644 tests/test_protection_levels.py
 create mode 100644 tests/test_zerosig.py
 copy PKG-INFO => trezor.egg-info/PKG-INFO (96%)
 create mode 100644 trezor.egg-info/SOURCES.txt
 create mode 100644 trezor.egg-info/dependency_links.txt
 create mode 100644 trezor.egg-info/not-zip-safe
 create mode 100644 trezor.egg-info/requires.txt
 create mode 100644 trezor.egg-info/top_level.txt

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-trezor.git



More information about the Python-modules-commits mailing list