diff options
author | Kate Stone <katherine.stone@apple.com> | 2016-09-06 20:57:50 +0000 |
---|---|---|
committer | Kate Stone <katherine.stone@apple.com> | 2016-09-06 20:57:50 +0000 |
commit | b9c1b51e45b845debb76d8658edabca70ca56079 (patch) | |
tree | dfcb5a13ef2b014202340f47036da383eaee74aa /lldb/third_party/Python/module/pexpect-2.4/examples/ssh_session.py | |
parent | d5aa73376966339caad04013510626ec2e42c760 (diff) | |
download | bcm5719-llvm-b9c1b51e45b845debb76d8658edabca70ca56079.tar.gz bcm5719-llvm-b9c1b51e45b845debb76d8658edabca70ca56079.zip |
*** This commit represents a complete reformatting of the LLDB source code
*** to conform to clang-format’s LLVM style. This kind of mass change has
*** two obvious implications:
Firstly, merging this particular commit into a downstream fork may be a huge
effort. Alternatively, it may be worth merging all changes up to this commit,
performing the same reformatting operation locally, and then discarding the
merge for this particular commit. The commands used to accomplish this
reformatting were as follows (with current working directory as the root of
the repository):
find . \( -iname "*.c" -or -iname "*.cpp" -or -iname "*.h" -or -iname "*.mm" \) -exec clang-format -i {} +
find . -iname "*.py" -exec autopep8 --in-place --aggressive --aggressive {} + ;
The version of clang-format used was 3.9.0, and autopep8 was 1.2.4.
Secondly, “blame” style tools will generally point to this commit instead of
a meaningful prior commit. There are alternatives available that will attempt
to look through this change and find the appropriate prior commit. YMMV.
llvm-svn: 280751
Diffstat (limited to 'lldb/third_party/Python/module/pexpect-2.4/examples/ssh_session.py')
-rw-r--r-- | lldb/third_party/Python/module/pexpect-2.4/examples/ssh_session.py | 45 |
1 files changed, 22 insertions, 23 deletions
diff --git a/lldb/third_party/Python/module/pexpect-2.4/examples/ssh_session.py b/lldb/third_party/Python/module/pexpect-2.4/examples/ssh_session.py index 4d0e228a7e3..222a72c1693 100644 --- a/lldb/third_party/Python/module/pexpect-2.4/examples/ssh_session.py +++ b/lldb/third_party/Python/module/pexpect-2.4/examples/ssh_session.py @@ -5,10 +5,12 @@ # April 2003 # from pexpect import * -import os, sys +import os +import sys import getpass import time - + + class ssh_session: "Session with extra state including the password to be used." @@ -25,30 +27,29 @@ class ssh_session: '@@@@@@@@@@@@', 'Command not found.', EOF, - ] - - self.f = open('ssh.out','w') - + ] + + self.f = open('ssh.out', 'w') + def __repr__(self): - outl = 'class :'+self.__class__.__name__ + outl = 'class :' + self.__class__.__name__ for attr in self.__dict__: if attr == 'password': - outl += '\n\t'+attr+' : '+'*'*len(self.password) + outl += '\n\t' + attr + ' : ' + '*' * len(self.password) else: - outl += '\n\t'+attr+' : '+str(getattr(self, attr)) + outl += '\n\t' + attr + ' : ' + str(getattr(self, attr)) return outl def __exec(self, command): - "Execute a command on the remote host. Return the output." child = spawn(command, - #timeout=10, - ) + # timeout=10, + ) if self.verbose: sys.stderr.write("-> " + command + "\n") seen = child.expect(self.keys) - self.f.write(str(child.before) + str(child.after)+'\n') + self.f.write(str(child.before) + str(child.after) + '\n') if seen == 0: child.sendline('yes') seen = child.expect(self.keys) @@ -61,13 +62,13 @@ class ssh_session: # Added to allow the background running of remote process if not child.isalive(): seen = child.expect(self.keys) - if seen == 2: + if seen == 2: lines = child.readlines() self.f.write(lines) if self.verbose: sys.stderr.write("<- " + child.before + "|\n") try: - self.f.write(str(child.before) + str(child.after)+'\n') + self.f.write(str(child.before) + str(child.after) + '\n') except: pass self.f.close() @@ -75,20 +76,18 @@ class ssh_session: def ssh(self, command): - return self.__exec("ssh -l %s %s \"%s\"" \ - % (self.user,self.host,command)) + return self.__exec("ssh -l %s %s \"%s\"" + % (self.user, self.host, command)) def scp(self, src, dst): - return self.__exec("scp %s %s@%s:%s" \ - % (src, session.user, session.host, dst)) + return self.__exec("scp %s %s@%s:%s" + % (src, session.user, session.host, dst)) def exists(self, file): - "Retrieve file permissions of specified remote file." seen = self.ssh("/bin/ls -ld %s" % file) if string.find(seen, "No such file") > -1: - return None # File doesn't exist + return None # File doesn't exist else: - return seen.split()[0] # Return permission field of listing. - + return seen.split()[0] # Return permission field of listing. |