Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-03-07 | Fix import * and a bunch of PEP8 formatting | Scott Maxwell | |
2014-03-07 | Skip failing test on Py3 | Jeff Forcier | |
2014-01-16 | Fix new test for Py3 and start server in tests instead of in setUp so we can ↵ | Scott Maxwell | |
skip starting server for test 5 | |||
2014-01-16 | Merge remote-tracking branch 'master/master' into py3-support-without-py25 | Scott Maxwell | |
Conflicts: paramiko/__init__.py setup.py tests/test_client.py | |||
2014-01-08 | Saner (to me) positive assertion | Jeff Forcier | |
2014-01-08 | Small refactor | Jeff Forcier | |
2014-01-08 | No need for 'self.tc' within a single test :) | Jeff Forcier | |
2014-01-08 | Add a testcase for client.save_host_keys. | Martin Blumenstingl | |
2013-11-19 | Remove byte conversions and unhexlify calls that we only needed for Py2.5 ↵ | Scott Maxwell | |
support and use the `b` byte string marker instead | |||
2013-11-02 | Fix some deprecation and resource warnings | Scott Maxwell | |
2013-11-02 | Make sftp.open handle binary and text, more type conversion | Scott Maxwell | |
2013-11-01 | Changes inspired by the nischu7 branch | Scott Maxwell | |
2013-10-31 | More type conversion | Scott Maxwell | |
2013-10-30 | Fix message sending | Scott Maxwell | |
Create constants for byte messages, implement asbytes so many methods can take Message and key objects directly and split get_string into get_text and get_binary. Also, change int handling to use mpint with a flag whenever the int is greater than 32 bits. | |||
2013-10-30 | Use test_path to avoid relative path issues | Scott Maxwell | |
2013-10-30 | Fix imports | Scott Maxwell | |
2013-09-27 | Fixed a typo in the license header of most files | Jeff Forcier | |
Conflicts: paramiko/proxy.py | |||
2012-09-24 | Fixes to failing-test teardowns to avoid more exceptions or hangs | Jeff Forcier | |
(cherry picked from commit 734f3d6f42ef1564f473fee5526e0354fc8196fc) Conflicts: test.py | |||
2009-11-01 | bug 426925: lookup host keys correctly when they have a different port. | Robey Pointer | |
2009-07-19 | fix my email address to be the current one. | Robey Pointer | |
2008-07-06 | [project @ robey@lag.net-20080706203706-zqxb69qrcgyuf90n] | Robey Pointer | |
allow multiple key files to be specified in SSHClient. suggested by Bernhard Walle. | |||
2007-02-13 | [project @ robey@lag.net-20070213191706-v8djxd4jiunb3his] | Robey Pointer | |
bump copyright year to 2007 | |||
2007-02-10 | [project @ robey@lag.net-20070211022553-mjbl0w7wygpl7os5] | Robey Pointer | |
add another test to check out private key auth. | |||
2006-12-27 | [project @ robey@lag.net-20061227194121-hzrmwbb6ea14unkg] | Robey Pointer | |
once, this test failed, so add a timer | |||
2006-12-15 | [project @ robey@lag.net-20061215222108-7pu0151970w1e1lp] | Robey Pointer | |
add a ResourceManager to replace __del__ methods, and use it in SSHClient to automatically close any open transport when the SSHClient is collected. this won't work on Transport itself (to close the attached packetizer) because Transport starts up its own thread, and the threading library keeps a Transport object alive to run that thread. i think that's okay; the SSHClient interface is meant to be the easier one, so that's the one where it's important that some auto-cleanup is attempted. | |||
2006-05-07 | [project @ robey@lag.net-20060508002007-3b7b87c361fe876a] | Robey Pointer | |
add unit tests for SSHClient, and fix a few bugs that uncovered |