diff options
| author | Johnny Chen <johnny.chen@apple.com> | 2011-04-26 23:10:51 +0000 | 
|---|---|---|
| committer | Johnny Chen <johnny.chen@apple.com> | 2011-04-26 23:10:51 +0000 | 
| commit | 0a8a54c117c67fa9be748eab64a8bf4a68399b1c (patch) | |
| tree | c8a04e3b2534b7f4bfb05679de266bfd9f49107a | |
| parent | 35ec67464fc8e3d8dca782df0729075134cabbaa (diff) | |
| download | bcm5719-llvm-0a8a54c117c67fa9be748eab64a8bf4a68399b1c.tar.gz bcm5719-llvm-0a8a54c117c67fa9be748eab64a8bf4a68399b1c.zip | |
Docstring.
llvm-svn: 130254
| -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): | 

