From e299181a5dda25aed4879ebcbe1359604448b3ae Mon Sep 17 00:00:00 2001 From: "Jeremy T. Bouse" Date: Fri, 27 Nov 2009 16:25:55 -0500 Subject: Imported Upstream version 1.7.6 --- docs/paramiko.SSHConfig-class.html | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) (limited to 'docs/paramiko.SSHConfig-class.html') diff --git a/docs/paramiko.SSHConfig-class.html b/docs/paramiko.SSHConfig-class.html index b568e27..549bb7a 100644 --- a/docs/paramiko.SSHConfig-class.html +++ b/docs/paramiko.SSHConfig-class.html @@ -62,9 +62,9 @@ object --+

Representation of config information as stored in the format used by - OpenSSH. Queries can be made via lookup. The - format is described in OpenSSH's ssh_config man page. This + OpenSSH. Queries can be made via lookup. The + format is described in OpenSSH's ssh_config man page. This class is provided primarily as a convenience to posix users (since the OpenSSH format is a de-facto standard on posix) but should work fine on Windows too.

@@ -138,6 +138,7 @@ object --+

Inherited from object: __delattr__, + __format__, __getattribute__, __hash__, __new__, @@ -145,7 +146,9 @@ object --+ __reduce_ex__, __repr__, __setattr__, - __str__ + __sizeof__, + __str__, + __subclasshook__

@@ -217,13 +220,13 @@ object --+

The host-matching rules of OpenSSH's ssh_config man page are used, which means that all configuration options from matching host specifications are merged, with more specific hostmasks taking - precedence. In other words, if "Port" is set - under "Host *" and also "Host + precedence. In other words, if "Port" is set under + "Host *" and also "Host *.example.com", and the lookup is for "ssh.example.com", then the port entry for "Host *.example.com" will win out.

The keys in the returned dict are all normalized to lowercase (look - for "port", not "Port". No + for "port", not "Port". No other processing is done to the keys or values.

Parameters:
@@ -284,7 +287,7 @@ object --+