Revert prev commit, we have much bigger problems because 2.3 is missing

the subprocess module.

llvm-svn: 74738
This commit is contained in:
Daniel Dunbar 2009-07-02 23:58:07 +00:00
parent 22da185ed8
commit 43d74cd948
1 changed files with 1 additions and 1 deletions

View File

@ -36,9 +36,9 @@ class TestStatus:
Invalid = 5
kNames = ['Pass','XFail','Fail','XPass','NoRunLine','Invalid']
@staticmethod
def getName(code):
return TestStatus.kNames[code]
getName = staticmethod(getName)
def mkdir_p(path):
if not path: