~ubuntu-branches/ubuntu/oneiric/paramiko/oneiric

« back to all changes in this revision

Viewing changes to paramiko/__init__.py

  • Committer: Bazaar Package Importer
  • Author(s): Jelmer Vernooij, Jelmer Vernooij, Andrew Bennetts
  • Date: 2011-01-14 06:54:41 UTC
  • Revision ID: james.westby@ubuntu.com-20110114065441-t1b38geuyx2ojxz2
Tags: 1.7.6-5ubuntu1
[ Jelmer Vernooij ]

* Avoid deprecated RandomPool. Patch by Gary van der Merwe. Closes:
  #576697, LP: #271791, LP: #682600.
* Switch to source format 3.0 (quilt).

[ Andrew Bennetts ]

* Try connecting to each available address family until one succeeds.
  LP: #579530

Show diffs side-by-side

added added

removed removed

Lines of Context:
66
66
__license__ = "GNU Lesser General Public License (LGPL)"
67
67
 
68
68
 
69
 
from transport import randpool, SecurityOptions, Transport
 
69
from transport import SecurityOptions, Transport
70
70
from client import SSHClient, MissingHostKeyPolicy, AutoAddPolicy, RejectPolicy, WarningPolicy
71
71
from auth_handler import AuthHandler
72
72
from channel import Channel, ChannelFile