Home
last modified time | relevance | path

Searched refs:wantResult (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython3/Lib/test/
Dtest_ntpath.py17 def tester(fn, wantResult): argument
20 if wantResult != gotResult:
22 %(str(fn), str(wantResult), str(gotResult)))
36 if isinstance(wantResult, str):
37 wantResult = os.fsencode(wantResult)
38 elif isinstance(wantResult, tuple):
39 wantResult = tuple(os.fsencode(r) for r in wantResult)
42 if wantResult != gotResult:
44 %(str(fn), str(wantResult), repr(gotResult)))
/external/python/cpython2/Lib/test/
Dtest_ntpath.py9 def tester0(fn, wantResult): argument
11 if wantResult != gotResult:
13 %(fn, wantResult, gotResult)
15 def tester(fn, wantResult): argument
17 tester0(fn, wantResult)