Fork of paramiko for Python 3 migration.
Go to file
Bobby Impollonia ae3ecbe548 Remove comparison between int and str
The code had been doing 'n < self.__in_buffer' when it
wanted to be doing 'n < len(self.__in_buffer)'

In Python 2.x, this comparison (int < str) is always True.
I found this while porting to Python 3 where it raises
an error.

The code has been working without complaints because always
taking the true branch of this conditional is actually fine.
We don't need the false branch, so drop the check entirely.
(cherry picked from commit 0a013f829e)
2012-09-23 16:18:57 -07:00
demos Fix trailing whitespace re #28 2012-07-04 20:43:49 -07:00
images [project @ Arch-1:robey@lag.net--2005-master-shake%paramiko--dev--1--patch-1] 2005-04-18 01:59:15 +00:00
paramiko Replace hard tabs with spaces 2012-09-23 16:18:56 -07:00
tests Remove comparison between int and str 2012-09-23 16:18:57 -07:00
.bzrignore [project @ robey@lag.net-20080706223938-fn82xx2k0zvklazm] 2008-07-06 15:39:38 -07:00
.gitignore ignore the egg-info stuff. 2010-04-25 16:44:33 -07:00
CHANGES Cut 1.7.13 2012-09-23 16:11:18 -07:00
ChangeLog.0 [project @ Arch-1:robey@lag.net--2005-master-shake%paramiko--dev--1--patch-11] 2005-05-21 20:42:29 +00:00
ChangeLog.1 [project @ Arch-1:robey@lag.net--2005-master-shake%paramiko--dev--1--patch-11] 2005-05-21 20:42:29 +00:00
LICENSE Fix FSF address 2012-09-23 16:16:57 -07:00
MANIFEST.in [project @ robey@lag.net-20061031185035-b57ad8184c39063a] 2006-10-31 10:50:35 -08:00
Makefile Clean up Makefile, ensure release is useful again 2012-09-23 16:10:26 -07:00
NEWS Add changelog entry re #28 2012-07-04 20:43:00 -07:00
NOTES [project @ Arch-1:robey@lag.net--2003-public%secsh--dev--1.0--patch-33] 2004-03-09 01:09:17 +00:00
README.legacy First draft of modern explanatory README 2012-09-23 16:18:26 -07:00
README.md Also as well? Y U NO ENGLISH GOOD 2012-09-23 16:18:55 -07:00
TODO Take ownership of TODO file 2012-09-23 14:34:40 -07:00
setup.py Replace hard tabs with spaces 2012-09-23 16:18:56 -07:00
setup_helper.py fix my email address to be the current one. 2009-07-19 19:45:02 -07:00
test.py fix my email address to be the current one. 2009-07-19 19:45:02 -07:00

README.md

ssh

The ssh library is a fork of, and spiritual successor to, the Paramiko Python SSH library. It was created by the developers of the Fabric library as a way to ensure timely updates and bugfixes for critical issues.

ssh is currently in a transitional state and other than a rename and a handful of small but crucial fixes/tweaks, the code and the documentation remain unchanged from the original.

We hope to clean up the presentation and documentation in the near future, as more bugfixes and API additions are rolled out. We also plan to absorb some of the higher profile bugs/issues from the Paramiko Github repository.

Thank you for your patience!