Home
last modified time | relevance | path

Searched refs:test_func_name (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython2/Tools/scripts/
Dfind_recursionlimit.py90 def check_limit(n, test_func_name): argument
92 if test_func_name.startswith("test_"):
93 print test_func_name[5:]
95 print test_func_name
96 test_func = globals()[test_func_name]
/external/python/cpython3/Tools/scripts/
Dfind_recursionlimit.py98 def check_limit(n, test_func_name): argument
100 if test_func_name.startswith("test_"):
101 print(test_func_name[5:])
103 print(test_func_name)
104 test_func = globals()[test_func_name]
/external/python/cpython2/Lib/test/
Dtest_funcattrs.py87 def test_func_name(self): member in FunctionPropertiesTest