[Python-modules-commits] [python-asyncssh] branch upstream updated (9a16010 -> 79cb36f)

Vincent Bernat bernat at moszumanska.debian.org
Sat May 21 14:17:32 UTC 2016


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

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

      from  9a16010   Import asyncssh-1.3.2.orig.tar.gz
      adds  79cb36f   Import python-asyncssh_1.5.3.orig.tar.gz

No new revisions were added by this update.

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 +-
 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 +-
 61 files changed, 9461 insertions(+), 2534 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