Lines Matching refs:ob
139 def get_arg_text(ob): argument
150 ob_call = ob.__call__
152 if type(ob) is types.ClassType: # old-style
153 ob_call = ob
158 if type(ob) in (types.ClassType, types.TypeType):
161 fob = _find_constructor(ob)
166 elif type(ob) == types.MethodType:
169 fob = ob.im_func
170 if ob.im_self is not None:
177 fob = ob
205 doc = getattr(ob, "__doc__", "")