diff options
Diffstat (limited to 'lldb/test/dotest.py')
| -rwxr-xr-x | lldb/test/dotest.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/test/dotest.py b/lldb/test/dotest.py index 9c10a8067a1..53001543360 100755 --- a/lldb/test/dotest.py +++ b/lldb/test/dotest.py @@ -24,11 +24,11 @@ import os, signal, sys, time import unittest2 def is_exe(fpath): - """Return true if fpath is an executable.""" + """Returns true if fpath is an executable.""" return os.path.isfile(fpath) and os.access(fpath, os.X_OK) def which(program): - """Find the full path to a program; return None otherwise.""" + """Returns the full path to a program; None otherwise.""" fpath, fname = os.path.split(program) if fpath: if is_exe(program): |

