[Python-modules-commits] [python-asyncssh] branch master updated	(ef66b50 -> 7d73440)
    Vincent Bernat 
    bernat at moszumanska.debian.org
       
    Sat May 21 14:17:21 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  ef66b50   Fixed VCS URL (https)
       new  22c997e   Bump Standards-Version
       new  41125ad   record new upstream branch created by importing python-asyncssh_1.5.3.orig.tar.gz
       new  79cb36f   Import python-asyncssh_1.5.3.orig.tar.gz
       new  57b94f3   make Sphinx use default theme
       new  267bbb2   skip tests requiring network access
       new  f49ba51   merge patched into master
       new  7d73440   New upstream version
The 7 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:
 README.rst                                         |   38 +-
 asyncssh/__init__.py                               |   22 +-
 asyncssh/agent.py                                  |  215 ++
 asyncssh/auth.py                                   |   54 +-
 asyncssh/auth_keys.py                              |    4 +-
 asyncssh/channel.py                                |  510 ++--
 asyncssh/client.py                                 |  298 +++
 asyncssh/connection.py                             | 2612 ++++++++++----------
 asyncssh/crypto/chacha.py                          |    1 +
 asyncssh/crypto/ec.py                              |   10 +-
 asyncssh/crypto/pyca/cipher.py                     |    4 +-
 asyncssh/crypto/pyca/dsa.py                        |    4 +-
 asyncssh/crypto/pyca/ec.py                         |    4 +-
 asyncssh/dh.py                                     |    8 +-
 asyncssh/ecdh.py                                   |   11 +-
 asyncssh/ed25519.py                                |    1 +
 asyncssh/forward.py                                |  134 +-
 asyncssh/known_hosts.py                            |  228 +-
 asyncssh/listener.py                               |  215 +-
 asyncssh/misc.py                                   |   40 +-
 asyncssh/packet.py                                 |    8 +-
 asyncssh/public_key.py                             |  100 +-
 asyncssh/server.py                                 |  656 +++++
 asyncssh/session.py                                |  113 +-
 asyncssh/sftp.py                                   |  963 ++++----
 asyncssh/stream.py                                 |   63 +-
 asyncssh/version.py                                |    2 +-
 debian/.git-dpm                                    |   14 +-
 debian/changelog                                   |    3 +-
 debian/control                                     |    2 +-
 .../0002-skip-tests-requiring-network-access.patch |    2 +-
 debian/patches/sphinx-use-default-theme.patch      |    2 +-
 docs/api.rst                                       |  255 +-
 docs/changes.rst                                   |  152 ++
 examples/check_exit_status.py                      |    2 +
 examples/direct_client.py                          |    2 +
 examples/listening_client.py                       |    2 +
 examples/local_forwarding_client.py                |    2 +
 examples/local_forwarding_client2.py               |    2 +
 examples/math_client.py                            |    2 +
 examples/remote_forwarding_client.py               |    2 +
 examples/remote_forwarding_client2.py              |    2 +
 examples/sample_client.py                          |    2 +
 examples/set_environment.py                        |    2 +
 examples/set_terminal.py                           |    2 +
 examples/sftp_client.py                            |    2 +
 examples/simple_client.py                          |    2 +
 examples/stderr_client.py                          |    2 +
 examples/stream_direct_client.py                   |    2 +
 examples/stream_listening_client.py                |    2 +
 examples/stream_math_client.py                     |    2 +
 pylintrc                                           |   46 +-
 tests/server.py                                    |  148 ++
 tests/test_agent.py                                |  221 ++
 tests/test_auth.py                                 |   54 +-
 tests/test_channel.py                              | 1355 ++++++++++
 tests/test_connection.py                           |  843 +++++++
 tests/test_connection_auth.py                      |  832 +++++++
 tests/test_forward.py                              |  933 +++++++
 tests/test_kex.py                                  |   34 +-
 tests/test_known_hosts.py                          |   18 +-
 tests/test_packet.py                               |  180 ++
 tests/test_public_key.py                           |   68 +-
 tests/test_sftp.py                                 |   58 +
 tests/test_stream.py                               |  296 +++
 tests/util.py                                      |  150 +-
 66 files changed, 9473 insertions(+), 2545 deletions(-)
 create mode 100644 asyncssh/agent.py
 create mode 100644 asyncssh/client.py
 create mode 100644 asyncssh/server.py
 create mode 100644 tests/server.py
 create mode 100644 tests/test_agent.py
 create mode 100644 tests/test_channel.py
 create mode 100644 tests/test_connection.py
 create mode 100644 tests/test_connection_auth.py
 create mode 100644 tests/test_forward.py
 create mode 100644 tests/test_packet.py
 create mode 100644 tests/test_sftp.py
 create mode 100644 tests/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