Lines Matching refs:fob
3780 fob = ob.im_func
3783 fob = ob
3786 if type(fob) in [types.FunctionType, types.LambdaType]:
3788 counter = fob.func_code.co_argcount
3789 items2 = list(fob.func_code.co_varnames[argOffset:counter])
3790 realArgs = fob.func_code.co_varnames[argOffset:counter]
3791 defaults = fob.func_defaults or []
3795 if fob.func_code.co_flags & 0x4:
3796 items1.append("*"+fob.func_code.co_varnames[counter])
3797 items2.append("*"+fob.func_code.co_varnames[counter])
3799 if fob.func_code.co_flags & 0x8:
3800 items1.append("**"+fob.func_code.co_varnames[counter])
3801 items2.append("**"+fob.func_code.co_varnames[counter])