[Python-modules-commits] [python-asyncssh] branch master updated (62762d7 -> d61b602)

Vincent Bernat bernat at moszumanska.debian.org
Sat Sep 10 12:10:09 UTC 2016


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

bernat pushed a change to branch master
in repository python-asyncssh.

      from  62762d7   Recommends appropriate version of python3-bcrypt
       new  621c3b5   record new upstream branch created by importing python-asyncssh_1.6.1.orig.tar.gz
       new  55a6973   Import python-asyncssh_1.6.1.orig.tar.gz
       new  e5a82a4   make Sphinx use default theme
       new  01fec57   skip tests requiring network access
       new  0ed6d30   merge patched into master
       new  15a0f11   New upstream version
       new  740da8d   record new upstream branch created by importing python-asyncssh_1.6.2.orig.tar.gz
       new  c29d147   Import python-asyncssh_1.6.2.orig.tar.gz
       new  3ddd1a9   make Sphinx use default theme
       new  80b0b9d   skip tests requiring network access
       new  2691df3   merge patched into master
       new  d40ab9e   New upstream version
       new  6ef2324   Use localehelper to make some tests succeed
       new  d61b602   Prepare for release

The 14 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:
 .travis.yml                                        |  12 +-
 COPYRIGHT                                          |   2 +-
 README.rst                                         |  23 +-
 asyncssh/__init__.py                               |  11 +-
 asyncssh/channel.py                                |  57 +-
 asyncssh/connection.py                             | 149 +++-
 asyncssh/constants.py                              |   1 +
 asyncssh/crypto/pyca/dsa.py                        |  63 +-
 asyncssh/crypto/pyca/ec.py                         |  81 +-
 asyncssh/crypto/pyca/rsa.py                        |  61 +-
 asyncssh/dsa.py                                    |  14 +-
 asyncssh/ecdsa.py                                  |  14 +-
 asyncssh/ed25519.py                                |  10 +-
 asyncssh/editor.py                                 | 574 +++++++++++++
 asyncssh/misc.py                                   |  39 +-
 asyncssh/process.py                                | 951 +++++++++++++++++++++
 asyncssh/public_key.py                             | 587 +++++++++++--
 asyncssh/rsa.py                                    |  14 +-
 asyncssh/session.py                                |  11 +-
 asyncssh/sftp.py                                   |  29 +-
 asyncssh/stream.py                                 | 101 ++-
 asyncssh/version.py                                |   2 +-
 debian/.git-dpm                                    |  14 +-
 debian/changelog                                   |   7 +
 debian/control                                     |   1 +
 .../0002-skip-tests-requiring-network-access.patch |  17 +-
 debian/patches/sphinx-use-default-theme.patch      |   2 +-
 debian/rules                                       |   3 +
 docs/api.rst                                       | 161 +++-
 docs/changes.rst                                   |  63 ++
 docs/index.rst                                     | 193 +++--
 examples/{sample_client.py => callback_client.py}  |   0
 examples/{simple_client.py => callback_client2.py} |   0
 examples/{stderr_client.py => callback_client3.py} |   0
 .../{math_server.py => callback_math_server.py}    |  10 +-
 examples/chat_server.py                            |  75 ++
 examples/check_exit_status.py                      |  27 +-
 examples/{show_environment.py => editor.py}        |  27 +-
 examples/gather_results.py                         |  40 +
 examples/math_client.py                            |  35 +-
 examples/math_server.py                            |  49 +-
 .../{stream_math_client.py => redirect_input.py}   |   7 +-
 ...orwarding_client2.py => redirect_local_pipe.py} |   9 +-
 ...orwarding_client.py => redirect_remote_pipe.py} |   5 +-
 examples/set_environment.py                        |  15 +-
 examples/set_terminal.py                           |  17 +-
 examples/show_environment.py                       |  10 +-
 examples/show_terminal.py                          |  10 +-
 examples/simple_cert_server.py                     |  25 +-
 examples/simple_client.py                          |  12 +-
 examples/simple_keyed_server.py                    |  21 +-
 examples/simple_server.py                          |  21 +-
 examples/stream_math_server.py                     |  63 --
 setup.py                                           |   8 +-
 tests/test_auth_keys.py                            |  29 +-
 tests/test_channel.py                              |  37 +-
 tests/test_editor.py                               | 262 ++++++
 tests/test_process.py                              | 843 ++++++++++++++++++
 tests/test_public_key.py                           | 143 +++-
 tests/test_sftp.py                                 |   4 +-
 tests/test_stream.py                               |   4 +-
 tests/util.py                                      |  16 +-
 tests_py35/test_connection.py                      |  44 +
 tests_py35/test_process.py                         |  44 +
 tests_py35/{test_async.py => test_sftp.py}         |  30 +-
 tests_py35/test_stream.py                          |  54 ++
 66 files changed, 4606 insertions(+), 657 deletions(-)
 create mode 100644 asyncssh/editor.py
 create mode 100644 asyncssh/process.py
 rename examples/{sample_client.py => callback_client.py} (100%)
 copy examples/{simple_client.py => callback_client2.py} (100%)
 rename examples/{stderr_client.py => callback_client3.py} (100%)
 copy examples/{math_server.py => callback_math_server.py} (86%)
 create mode 100755 examples/chat_server.py
 copy examples/{show_environment.py => editor.py} (69%)
 create mode 100755 examples/gather_results.py
 rename examples/{stream_math_client.py => redirect_input.py} (75%)
 copy examples/{local_forwarding_client2.py => redirect_local_pipe.py} (69%)
 copy examples/{remote_forwarding_client.py => redirect_remote_pipe.py} (80%)
 delete mode 100755 examples/stream_math_server.py
 create mode 100644 tests/test_editor.py
 create mode 100644 tests/test_process.py
 create mode 100644 tests_py35/test_connection.py
 create mode 100644 tests_py35/test_process.py
 rename tests_py35/{test_async.py => test_sftp.py} (78%)
 create mode 100644 tests_py35/test_stream.py

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



More information about the Python-modules-commits mailing list