summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch '1.8' into 1.91.9Jeff Forcier2013-12-311-0/+4
|\
| * Update travis settings to be similar to fab's1.8Jeff Forcier2013-12-311-0/+4
| |
* | Merge branch '1.8' into 1.9Jeff Forcier2013-12-311-1/+0
|\ \ | |/
| * No more Python 2.5 on Travis :(Jeff Forcier2013-12-311-1/+0
| |
* | Merge branch '1.8' into 1.9Jeff Forcier2013-10-161-0/+1
|\ \ | |/ | | | | | | Conflicts: paramiko/__init__.py
| * Reintroduce __version_info__ variableMike Gabriel2013-10-161-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | At least one application (mysql-workbench) (used to) use(s) the __version_info__ that got removed by commit 99859b8b021a5d13ca067a3e79560d6121f9c52f. Breaking existing software with new versions of paramiko should be avoided. This pull-request reintroduces the __version_info__ var, but fills it from the __version__ var. No need to maintain multiple version strings. Conflicts: paramiko/__init__.py
* | Merge branch '1.8' into 1.9Jeff Forcier2013-09-2761-61/+61
|\ \ | |/
| * Fixed a typo in the license header of most filesJeff Forcier2013-09-2761-61/+61
| | | | | | | | | | Conflicts: paramiko/proxy.py
| * Fix demo re #200Jeff Forcier2013-09-271-1/+1
| |
* | Merge branch '1.8' into 1.9Jeff Forcier2013-09-271-1/+1
|\ \
| * | Fix demo re #200Jeff Forcier2013-09-271-1/+1
| |/
* | Merge branch '1.8' into 1.9Jeff Forcier2013-09-271-1/+1
|\ \ | |/
| * Use verbose test output for travisJeff Forcier2013-09-271-1/+1
| |
* | Remove pointless & outdated version/release crap from READMEJeff Forcier2013-04-051-6/+0
| |
* | Merge branch '1.8' into 1.9Jeff Forcier2013-02-032-19/+5
|\ \ | |/
| * Update explicitly-stated Python version reqs to 2.5+Jeff Forcier2013-02-032-19/+5
| |
* | Merge branch '1.8' into 1.9Jeff Forcier2012-12-311-1/+1
|\ \ | |/
| * New yearJeff Forcier2012-12-311-1/+1
| |
* | Merge branch '1.8' into 1.9Jeff Forcier2012-11-291-3/+1
|\ \ | |/
| * Update Travis settings:Jeff Forcier2012-11-291-3/+1
| | | | | | | | | | * Don't email me, I'll see it on IRC if I'm online * Ping #paramiko, not #fabric, as it now exists
* | Revert "Forgot to import errno"Jeff Forcier2012-11-291-1/+0
| | | | | | | | This reverts commit 203c7379ac1211cc393d127ab83be774faa0f913.
* | Revert "Make send() and recv() fail when channel is closed"Jeff Forcier2012-11-291-16/+3
| | | | | | | | This reverts commit 8496eff0b7afc07675e1f42815f83633d87097ee.
* | Merge branch '1.8' into 1.9Jeff Forcier2012-11-290-0/+0
|\ \ | |/
| * Revert "Forgot to import errno"Jeff Forcier2012-11-291-1/+0
| | | | | | | | This reverts commit 537f95dbb36c578e65cfd9cbc1a1eabc03f38428.
| * Revert "Make send() and recv() fail when channel is closed"Jeff Forcier2012-11-291-16/+3
| | | | | | | | This reverts commit bc3674d0f0c61b5c7af9cfbc9248cf574d0998b0.
| * Forgot to import errnoTomer Filiba2012-11-291-0/+1
| |
| * Make send() and recv() fail when channel is closedTomer Filiba2012-11-291-3/+16
| | | | | | | | | | | | | | ``sendall()`` was checking if the channel has been closed, and failed accordingly, but ``send()`` and ``recv()`` did not. This meant that ``chan.send("foo")`` when the channel was already closed, just blocked forever.
* | Forgot to import errnoTomer Filiba2012-11-291-0/+1
| |
* | Make send() and recv() fail when channel is closedTomer Filiba2012-11-291-3/+16
| | | | | | | | | | | | | | ``sendall()`` was checking if the channel has been closed, and failed accordingly, but ``send()`` and ``recv()`` did not. This meant that ``chan.send("foo")`` when the channel was already closed, just blocked forever.
* | Merge branch '1.8' into 1.9Jeff Forcier2012-11-281-1/+1
|\ \ | |/
| * Make docs target build whenever Paramiko files changeJeff Forcier2012-11-281-1/+1
| |
| * Git ignore built docs dirJeff Forcier2012-11-061-0/+1
| |
* | Git ignore built docs dirJeff Forcier2012-11-061-0/+1
| |
* | Merge branch '1.8' into 1.9Jeff Forcier2012-11-061-0/+2
|\ \ | |/
| * Tweak travis configJeff Forcier2012-11-061-0/+2
| |
* | Update changelog date for 1.9.0v1.9.01.9.0Jeff Forcier2012-11-061-2/+2
| |
* | Merge branch '1.8'Jeff Forcier2012-11-061-2/+2
|\ \ | |/ | | | | | | | | | | Conflicts: NEWS paramiko/__init__.py setup.py
| * Cut 1.8.1v1.8.11.8.1Jeff Forcier2012-11-063-4/+4
| |
* | Bump to 1.9.0 for releaseJeff Forcier2012-11-062-2/+2
| |
* | Python 2.5 compatgateway-supportJeff Forcier2012-11-051-1/+2
| |
* | Fix broken importJeff Forcier2012-11-051-1/+1
| |
* | Add ProxyCommand classes to top level APIJeff Forcier2012-11-051-1/+4
| |
* | Changelog re #97Jeff Forcier2012-11-051-0/+3
| |
* | One more patch from @clarete's workJeff Forcier2012-11-051-1/+4
| |
* | Implement (& test for) ProxyCommand interpolation.Jeff Forcier2012-11-052-2/+33
| | | | | | | | Forgot this earlier.
* | FormattingJeff Forcier2012-11-051-20/+19
| |
* | Bubble up ProxyCommandFailure in packetizerJeff Forcier2012-11-051-1/+3
| |
* | Post-import editsJeff Forcier2012-11-051-4/+6
| |
* | Import BadProxyCommandJeff Forcier2012-11-051-0/+15
| |
* | Post-import editsJeff Forcier2012-11-051-20/+24
| |