Jeff Forcier
89e2592ead
Merge branch '1.8' into 1.9
2013-12-31 19:14:39 -08:00
Jeff Forcier
91a8066686
No more Python 2.5 on Travis :(
2013-12-31 19:14:36 -08:00
Jeff Forcier
858d3fd07f
Merge branch '1.8' into 1.9
...
Conflicts:
paramiko/__init__.py
2013-10-16 17:00:13 -07:00
Mike Gabriel
6b222528f3
Reintroduce __version_info__ variable
...
At least one application (mysql-workbench) (used to) use(s) the __version_info__
that got removed by commit 99859b8b02
.
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
2013-10-16 16:59:35 -07:00
Jeff Forcier
2de9c72720
Merge branch '1.8' into 1.9
2013-09-27 21:29:41 -07:00
Jeff Forcier
83f44878ea
Fixed a typo in the license header of most files
...
Conflicts:
paramiko/proxy.py
2013-09-27 21:29:18 -07:00
Jeff Forcier
d4e18e1d1c
Fix demo re #200
2013-09-27 21:20:28 -07:00
Jeff Forcier
8cdbcfa1ff
Merge branch '1.8' into 1.9
2013-09-27 21:13:25 -07:00
Jeff Forcier
e0d4fdbc5d
Fix demo re #200
2013-09-27 21:13:21 -07:00
Jeff Forcier
be68ca1020
Merge branch '1.8' into 1.9
2013-09-27 20:09:43 -07:00
Jeff Forcier
152f126869
Use verbose test output for travis
2013-09-27 20:09:41 -07:00
Jeff Forcier
2e069824ed
Remove pointless & outdated version/release crap from README
2013-04-05 10:09:58 -07:00
Jeff Forcier
6284666cfd
Merge branch '1.8' into 1.9
2013-02-03 11:52:30 -08:00
Jeff Forcier
bf87cd124d
Update explicitly-stated Python version reqs to 2.5+
2013-02-03 11:52:11 -08:00
Jeff Forcier
876c9bdbda
Merge branch '1.8' into 1.9
2012-12-31 16:53:55 -05:00
Jeff Forcier
d5edad63a3
New year
2012-12-31 16:53:51 -05:00
Jeff Forcier
5073b7236d
Merge branch '1.8' into 1.9
2012-11-29 15:37:25 -08:00
Jeff Forcier
7255dcf042
Update Travis settings:
...
* Don't email me, I'll see it on IRC if I'm online
* Ping #paramiko, not #fabric, as it now exists
2012-11-29 15:37:22 -08:00
Jeff Forcier
287f9c3423
Revert "Forgot to import errno"
...
This reverts commit 203c7379ac
.
2012-11-29 15:19:15 -08:00
Jeff Forcier
bda161330f
Revert "Make send() and recv() fail when channel is closed"
...
This reverts commit 8496eff0b7
.
2012-11-29 15:19:07 -08:00
Jeff Forcier
03c350903e
Merge branch '1.8' into 1.9
2012-11-29 15:18:53 -08:00
Jeff Forcier
682a3eff84
Revert "Forgot to import errno"
...
This reverts commit 537f95dbb3
.
2012-11-29 15:18:48 -08:00
Jeff Forcier
7a4d3c4e42
Revert "Make send() and recv() fail when channel is closed"
...
This reverts commit bc3674d0f0
.
2012-11-29 15:18:40 -08:00
Tomer Filiba
203c7379ac
Forgot to import errno
2012-11-29 14:55:34 -08:00
Tomer Filiba
8496eff0b7
Make send() and recv() fail when channel is closed
...
``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.
2012-11-29 14:55:31 -08:00
Tomer Filiba
537f95dbb3
Forgot to import errno
2012-11-29 14:38:33 -08:00
Tomer Filiba
bc3674d0f0
Make send() and recv() fail when channel is closed
...
``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.
2012-11-29 14:38:23 -08:00
Jeff Forcier
5ed0e11a7f
Merge branch '1.8' into 1.9
2012-11-28 22:22:58 -08:00
Jeff Forcier
2832f3c60f
Make docs target build whenever Paramiko files change
2012-11-28 22:22:54 -08:00
Jeff Forcier
d7aa342c20
Git ignore built docs dir
2012-11-06 16:28:42 -08:00
Jeff Forcier
b42c73356c
Git ignore built docs dir
2012-11-06 16:28:35 -08:00
Jeff Forcier
06d987c362
Merge branch '1.8' into 1.9
2012-11-06 13:13:04 -08:00
Jeff Forcier
a32addcfb7
Tweak travis config
2012-11-06 13:13:00 -08:00
Jeff Forcier
65de2529a9
Update changelog date for 1.9.0
2012-11-06 13:10:03 -08:00
Jeff Forcier
42f1b451a6
Merge branch '1.8'
...
Conflicts:
NEWS
paramiko/__init__.py
setup.py
2012-11-06 13:09:23 -08:00
Jeff Forcier
7f4c26f860
Cut 1.8.1
2012-11-06 13:08:41 -08:00
Jeff Forcier
a3b44c7ed9
Bump to 1.9.0 for release
2012-11-06 13:06:08 -08:00
Jeff Forcier
ebd007b217
Python 2.5 compat
2012-11-05 23:10:13 -08:00
Jeff Forcier
e7ab3c068f
Fix broken import
2012-11-05 23:10:05 -08:00
Jeff Forcier
308c5f57d9
Add ProxyCommand classes to top level API
2012-11-05 23:09:52 -08:00
Jeff Forcier
7a3cb790a6
Changelog re #97
2012-11-05 17:55:37 -08:00
Jeff Forcier
fd392d6b20
One more patch from @clarete's work
2012-11-05 17:47:33 -08:00
Jeff Forcier
191a5fc08c
Implement (& test for) ProxyCommand interpolation.
...
Forgot this earlier.
2012-11-05 17:44:25 -08:00
Jeff Forcier
0981c25cd8
Formatting
2012-11-05 17:35:06 -08:00
Jeff Forcier
0a276ac34b
Bubble up ProxyCommandFailure in packetizer
2012-11-05 17:31:17 -08:00
Jeff Forcier
394ab2699e
Post-import edits
2012-11-05 17:29:32 -08:00
Jeff Forcier
5d15467ad4
Import BadProxyCommand
2012-11-05 17:29:23 -08:00
Jeff Forcier
27271fa455
Post-import edits
2012-11-05 17:26:47 -08:00
Jeff Forcier
7cd2f2715b
Initial port of ProxyCommand class from @clarete
2012-11-05 17:25:03 -08:00
Jeff Forcier
270bb94a46
Fix ProxyCommand equals splitting.
...
Uses regex approach from @lndbrg
2012-11-05 17:18:48 -08:00