Lines Matching refs:args
83 def cleanup1(*args, **kwargs):
84 cleanups.append((1, args, kwargs))
86 def cleanup2(*args, **kwargs):
87 cleanups.append((2, args, kwargs))
251 def class_cleanup1(*args, **kwargs):
252 class_cleanups.append((3, args, kwargs))
254 def class_cleanup2(*args, **kwargs):
255 class_cleanups.append((4, args, kwargs))
582 def module_cleanup1(*args, **kwargs):
583 module_cleanups.append((3, args, kwargs))
585 def module_cleanup2(*args, **kwargs):
586 module_cleanups.append((4, args, kwargs))
606 def module_cleanup_good(*args, **kwargs):
607 module_cleanups.append((3, args, kwargs))
609 def module_cleanup_bad(*args, **kwargs):
627 def cleanup(*args, **kwargs):
628 cleanups.append((args, kwargs))
899 def cleanup(*args, **kwargs):
900 cleanups.append((args, kwargs))
921 def cleanup(*args, **kwargs):
922 cleanups.append((args, kwargs))
1282 def MockResultClass(*args):
1283 return args
1309 # no args -> all the warnings are printed, unittest warnings only once
1331 for args in args_list:
1332 p = subprocess.Popen(args, **opts)