class documentation

class UnparsedEntry: (source)

Implements interfaces: twisted.conch.interfaces.IKnownHostEntry

View In Hierarchy

UnparsedEntry is an entry in a KnownHostsFile which can't actually be parsed; therefore it matches no keys and no hosts.
Method __init__ Create an unparsed entry from a line in a known_hosts file which cannot otherwise be parsed.
Method matches​Host Always returns False.
Method matches​Key Always returns False.
Method to​String Returns the input line, without its newline if one was given.
Instance Variable _string Undocumented
def __init__(self, string): (source)
Create an unparsed entry from a line in a known_hosts file which cannot otherwise be parsed.
def matchesHost(self, hostname): (source)
Always returns False.
def matchesKey(self, key): (source)
Always returns False.
def toString(self): (source)
Returns the input line, without its newline if one was given.
Returns
bytesThe string representation of this entry, almost exactly as was used to initialize this entry but without a trailing newline.
_string = (source)

Undocumented