Searched refs:_force_run (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython2/Lib/test/support/ |
D | __init__.py | 200 def _force_run(path, func, *args): function 252 for name in _force_run(path, os.listdir, path): 256 _force_run(fullname, os.rmdir, fullname) 258 _force_run(fullname, os.unlink, fullname) 260 _waitfor(lambda p: _force_run(p, os.rmdir, p), path) 273 for name in _force_run(path, os.listdir, path): 281 _force_run(path, os.rmdir, fullname) 283 _force_run(path, os.unlink, fullname)
|
/external/python/cpython3/Lib/test/support/ |
D | __init__.py | 327 def _force_run(path, func, *args): function 379 for name in _force_run(path, os.listdir, path): 389 _force_run(fullname, os.rmdir, fullname) 391 _force_run(fullname, os.unlink, fullname) 393 _waitfor(lambda p: _force_run(p, os.rmdir, p), path) 421 for name in _force_run(path, os.listdir, path): 429 _force_run(path, os.rmdir, fullname) 431 _force_run(path, os.unlink, fullname)
|