summaryrefslogtreecommitdiffhomepage
path: root/tests/test_buffered_pipe.py
AgeCommit message (Collapse)Author
2017-10-23Import cleanup, mostly focused on s/tests/./Jeff Forcier
2014-09-08Merge branch 'master' into 267-intJeff Forcier
Conflicts: paramiko/client.py paramiko/transport.py sites/www/changelog.rst
2014-08-15Remove all occurences of ParamikoTest.Olle Lundberg
Sorry paramiko, it's time to put on the big boy pants. You no longer support old as hell versions of python.
2014-08-15Strip whitespace.Olle Lundberg
2014-03-26Merge branch 'master' into gssapi-py3-supportSebastian Deiss
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
2014-03-07Fix import * and a bunch of PEP8 formattingScott Maxwell
2014-02-11Merge branch scottkmaxwell:py3-support-without-py25 intoSebastian Deiss
SebastianDeiss:gssapi-py3-support
2013-11-19Remove 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-02Fix some deprecation and resource warningsScott Maxwell
2013-10-31Fix bytes/str type in more placesScott Maxwell
2013-10-30Fix importsScott Maxwell
2013-09-27Fixed a typo in the license header of most filesJeff Forcier
Conflicts: paramiko/proxy.py
2012-10-15Refactoring: it's a thing. Re #85Jeff Forcier
2009-07-19fix my email address to be the current one.Robey Pointer
2008-02-17[project @ robey@lag.net-20080218051229-xtylb1poe246k2ci]Robey Pointer
merge patch from Dwayne Litzenberger to fix unit tests on python 2.3.
2007-10-28[project @ robey@lag.net-20071029030344-9adfzb9ulfodtepu]Robey Pointer
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.
2007-02-13[project @ robey@lag.net-20070213191706-v8djxd4jiunb3his]Robey Pointer
bump copyright year to 2007
2006-04-20[project @ robey@lag.net-20060420072722-924a44953b8d9919]Robey Pointer
tweak a test that relied too much on timing
2006-04-11[project @ robey@lag.net-20060411224806-2683ac099f9608ae]Robey Pointer
add a test that feed/read can happen piecemeal
2006-04-11[project @ robey@lag.net-20060411073946-8830b560b276266f]Robey Pointer
factor out BufferedPipe into its own class