summaryrefslogtreecommitdiff
path: root/tests/test_buffered_pipe.py
Commit message (Collapse)AuthorAgeFilesLines
* Fix Free Software Foundation addressPaul Howarth2022-03-151-1/+1
| | | | They moved from Temple Place to Franklin Street in 2005.
* flake8 now applied to tests, huzzahJeff Forcier2019-06-081-1/+0
|
* Clean up shitty old test names of form test_[9-0A-Z]+_.*Jeff Forcier2019-06-081-4/+4
|
* Bump black up to 18.6b4Jeff Forcier2018-08-221-1/+0
|
* Blacken Paramiko on 2.4Chris Rose2018-05-171-13/+14
|
* Import cleanup, mostly focused on s/tests/./Jeff Forcier2017-10-231-0/+1
|
* Merge branch 'master' into 267-intJeff Forcier2014-09-081-5/+4
|\ | | | | | | | | | | | | Conflicts: paramiko/client.py paramiko/transport.py sites/www/changelog.rst
| * Remove all occurences of ParamikoTest.Olle Lundberg2014-08-151-3/+2
| | | | | | | | | | Sorry paramiko, it's time to put on the big boy pants. You no longer support old as hell versions of python.
| * Strip whitespace.Olle Lundberg2014-08-151-2/+2
| |
* | Merge branch 'master' into gssapi-py3-supportSebastian Deiss2014-03-261-8/+6
|\ \ | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
| * Fix import * and a bunch of PEP8 formattingScott Maxwell2014-03-071-9/+6
| |
| * Remove byte conversions and unhexlify calls that we only needed for Py2.5 ↵Scott Maxwell2013-11-191-9/+9
| | | | | | | | support and use the `b` byte string marker instead
| * Fix some deprecation and resource warningsScott Maxwell2013-11-021-14/+14
| |
| * Fix bytes/str type in more placesScott Maxwell2013-10-311-9/+10
| |
| * Fix importsScott Maxwell2013-10-301-1/+1
| |
* | Merge branch scottkmaxwell:py3-support-without-py25 intoSebastian Deiss2014-02-111-15/+16
|/ | | SebastianDeiss:gssapi-py3-support
* Fixed a typo in the license header of most filesJeff Forcier2013-09-271-1/+1
| | | | | Conflicts: paramiko/proxy.py
* Refactoring: it's a thing. Re #85Jeff Forcier2012-10-151-5/+3
|
* fix my email address to be the current one.Robey Pointer2009-07-191-1/+1
|
* [project @ robey@lag.net-20080218051229-xtylb1poe246k2ci]Robey Pointer2008-02-171-0/+3
| | | | merge patch from Dwayne Litzenberger to fix unit tests on python 2.3.
* [project @ robey@lag.net-20071029030344-9adfzb9ulfodtepu]Robey Pointer2007-10-281-0/+15
| | | | | | | | 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.
* [project @ robey@lag.net-20070213191706-v8djxd4jiunb3his]Robey Pointer2007-02-131-1/+1
| | | | bump copyright year to 2007
* [project @ robey@lag.net-20060420072722-924a44953b8d9919]Robey Pointer2006-04-201-1/+1
| | | | tweak a test that relied too much on timing
* [project @ robey@lag.net-20060411224806-2683ac099f9608ae]Robey Pointer2006-04-111-0/+6
| | | | add a test that feed/read can happen piecemeal
* [project @ robey@lag.net-20060411073946-8830b560b276266f]Robey Pointer2006-04-111-0/+71
factor out BufferedPipe into its own class