[Python-modules-commits] [python-asyncssh] branch upstream updated (ba570a9 -> 8cff4f8)

Vincent Bernat bernat at moszumanska.debian.org
Mon Sep 18 12:03:32 UTC 2017


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

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

      from  ba570a9   Import python-asyncssh_1.8.1.orig.tar.gz
      adds  0dc15b0   Import python-asyncssh_1.10.1.orig.tar.gz
       new  8cff4f8   New upstream release.

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:
 .travis.yml                                        |    4 +-
 COPYRIGHT                                          |    2 +-
 README.rst                                         |   28 +-
 appveyor.yml                                       |   32 +
 asyncssh/__init__.py                               |   11 +-
 asyncssh/asn1.py                                   |   43 +
 asyncssh/auth.py                                   |  354 ++++-
 asyncssh/auth_keys.py                              |  138 +-
 asyncssh/channel.py                                |  118 +-
 asyncssh/client.py                                 |    9 +-
 asyncssh/connection.py                             |  674 ++++++--
 asyncssh/crypto/__init__.py                        |    9 +-
 asyncssh/crypto/pyca/dsa.py                        |   27 +-
 asyncssh/crypto/pyca/ec.py                         |   31 +-
 asyncssh/crypto/pyca/misc.py                       |   25 +
 asyncssh/crypto/pyca/rsa.py                        |   32 +-
 asyncssh/crypto/pyca/x509.py                       |  354 +++++
 asyncssh/dh.py                                     |  461 ++++--
 asyncssh/dsa.py                                    |   19 +-
 asyncssh/ecdh.py                                   |    9 +-
 asyncssh/ecdsa.py                                  |   14 +-
 asyncssh/ed25519.py                                |    8 +-
 asyncssh/gss.py                                    |   55 +
 asyncssh/gss_unix.py                               |  146 ++
 asyncssh/gss_win32.py                              |  173 ++
 asyncssh/kex.py                                    |   41 +-
 asyncssh/known_hosts.py                            |  132 +-
 asyncssh/misc.py                                   |   10 +-
 asyncssh/process.py                                |  531 +++++--
 asyncssh/public_key.py                             | 1048 +++++++++---
 asyncssh/rsa.py                                    |   22 +-
 asyncssh/scp.py                                    |  832 ++++++++++
 asyncssh/server.py                                 |   42 +-
 asyncssh/sftp.py                                   |  798 +++++++---
 asyncssh/stream.py                                 |   84 +-
 asyncssh/version.py                                |    4 +-
 asyncssh/x11.py                                    |    9 +-
 docs/api.rst                                       |  379 +++--
 docs/changes.rst                                   |  114 +-
 docs/conf.py                                       |    4 +-
 docs/index.rst                                     |   91 ++
 examples/chat_server.py                            |   19 +-
 examples/editor.py                                 |   27 +-
 examples/math_server.py                            |   16 +-
 .../{simple_cert_server.py => redirect_server.py}  |   18 +-
 examples/{sftp_client.py => scp_client.py}         |    6 +-
 examples/show_environment.py                       |   23 +-
 examples/show_terminal.py                          |   29 +-
 examples/simple_cert_server.py                     |   12 +-
 examples/simple_keyed_server.py                    |   12 +-
 ...{simple_sftp_server.py => simple_scp_server.py} |    2 +-
 examples/simple_server.py                          |   12 +-
 pylintrc                                           |    6 +-
 setup.py                                           |    2 +
 tests/gss_stub.py                                  |   43 +
 tests/gssapi_stub.py                               |  128 ++
 tests/server.py                                    |  164 +-
 tests/sspi_stub.py                                 |  125 ++
 tests/test_asn1.py                                 |    8 +-
 tests/test_auth.py                                 |  238 ++-
 tests/test_auth_keys.py                            |  138 +-
 tests/test_cipher.py                               |    5 +-
 tests/test_connection.py                           |  293 +++-
 tests/test_connection_auth.py                      |  341 +++-
 tests/test_forward.py                              |    8 +
 tests/test_kex.py                                  |  259 ++-
 tests/test_known_hosts.py                          |  160 +-
 tests/test_process.py                              |  592 ++++---
 tests/test_public_key.py                           |  709 +++++++--
 tests/test_sftp.py                                 | 1674 +++++++++++++++++---
 tests/test_x11.py                                  |   18 +-
 tests/test_x509.py                                 |  289 ++++
 tests/util.py                                      |   90 +-
 tests_py35/test_sftp.py                            |   18 +-
 tox.ini                                            |   22 +-
 75 files changed, 10326 insertions(+), 2097 deletions(-)
 create mode 100644 appveyor.yml
 create mode 100644 asyncssh/crypto/pyca/misc.py
 create mode 100644 asyncssh/crypto/pyca/x509.py
 create mode 100644 asyncssh/gss.py
 create mode 100644 asyncssh/gss_unix.py
 create mode 100644 asyncssh/gss_win32.py
 create mode 100644 asyncssh/scp.py
 copy examples/{simple_cert_server.py => redirect_server.py} (67%)
 copy examples/{sftp_client.py => scp_client.py} (73%)
 copy examples/{simple_sftp_server.py => simple_scp_server.py} (95%)
 create mode 100644 tests/gss_stub.py
 create mode 100644 tests/gssapi_stub.py
 create mode 100644 tests/sspi_stub.py
 create mode 100644 tests/test_x509.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