Age | Commit message (Collapse) | Author |
|
|
|
Conflicts:
paramiko/client.py
paramiko/transport.py
sites/www/changelog.rst
|
|
Sorry paramiko, it's time to put on the big boy pants. You no
longer support old as hell versions of python.
|
|
|
|
Conflicts:
.gitignore
README
demos/demo_simple.py
dev-requirements.txt
paramiko/__init__.py
paramiko/_winapi.py
paramiko/agent.py
paramiko/auth_handler.py
paramiko/ber.py
paramiko/buffered_pipe.py
paramiko/channel.py
paramiko/client.py
paramiko/common.py
paramiko/dsskey.py
paramiko/ecdsakey.py
paramiko/file.py
paramiko/hostkeys.py
paramiko/kex_gex.py
paramiko/kex_group1.py
paramiko/message.py
paramiko/packet.py
paramiko/pkey.py
paramiko/primes.py
paramiko/proxy.py
paramiko/py3compat.py
paramiko/server.py
paramiko/sftp_client.py
paramiko/transport.py
paramiko/util.py
paramiko/win_pageant.py
setup.py
sites/shared_conf.py
sites/www/changelog.rst
sites/www/conf.py
sites/www/index.rst
sites/www/installing.rst
test.py
tests/loop.py
tests/stub_sftp.py
tests/test_auth.py
tests/test_client.py
tests/test_file.py
tests/test_hostkeys.py
tests/test_kex.py
tests/test_message.py
tests/test_packetizer.py
tests/test_pkey.py
tests/test_sftp.py
tests/test_sftp_big.py
tests/test_transport.py
tests/test_util.py
|
|
|
|
SebastianDeiss:gssapi-py3-support
|
|
support and use the `b` byte string marker instead
|
|
|
|
|
|
|
|
Conflicts:
paramiko/proxy.py
|
|
|
|
|
|
merge patch from Dwayne Litzenberger to fix unit tests on python 2.3.
|
|
bug 157205: select() doesn't notify incoming stderr data, because stderr's
pipe isn't hooked up to the fileno() BufferedPipe. to fix, i added an "or"
pipe-event that can be triggered by either stdout or stderr, and hooked
them both up to fileno(). added a unit test for the bug and one for the
"or" pipe.
|
|
bump copyright year to 2007
|
|
tweak a test that relied too much on timing
|
|
add a test that feed/read can happen piecemeal
|
|
factor out BufferedPipe into its own class
|