Lines Matching refs:args
337 funct = self.ChangeDict.get(funct, (lambda *args: None))
1682 th1 = threading.Thread(target=thfunc1, args=(self,))
1683 th2 = threading.Thread(target=thfunc2, args=(self,))
3845 for fn, args in operations:
3848 ans = fn(*args)
3856 new_ans = fn(*args)
5731 args = []
5736 args.append(pdict[module][name])
5741 return args, kwargs
5786 args, kwds = mkargs(C, c_sig)
5788 getattr(c_type(9), attr)(*args, **kwds)
5790 raise TestFailed("invalid signature for %s: %s %s" % (c_func, args, kwds))
5792 args, kwds = mkargs(P, p_sig)
5794 getattr(p_type(9), attr)(*args, **kwds)
5796 raise TestFailed("invalid signature for %s: %s %s" % (p_func, args, kwds))
5890 (opt, args) = p.parse_args()
5894 elif args:
5895 test_main(arith=True, verbose=True, todo_tests=args, debug=opt.debug)