Lines Matching refs:fob
161 fob = _find_constructor(ob)
162 if fob is None:
163 fob = lambda: None function
169 fob = ob.im_func
174 fob = ob_call.im_func
177 fob = ob
179 if type(fob) in [types.FunctionType, types.LambdaType]:
180 argcount = fob.func_code.co_argcount
181 real_args = fob.func_code.co_varnames[arg_offset:argcount]
182 defaults = fob.func_defaults or []
187 if fob.func_code.co_flags & flag: