And, do not define arguments twice

llvm-svn: 227905
This commit is contained in:
Enrico Granata 2015-02-03 01:00:44 +00:00
parent 35dd52cf3e
commit 9c58e8aac4
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ class PExpectTest(TestBase):
self.timeout = 5
self.child = pexpect.spawn('%s %s' % (self.lldbHere, self.launchArgs()))
def expect(self, exact=None, patterns=None, timeout=None, exact=None):
def expect(self, patterns=None, timeout=None, exact=None):
if patterns is None: return None
if timeout is None: timeout = self.timeout
if exact is None: exact = False