Home
last modified time | relevance | path

Searched refs:isframe (Results 1 – 6 of 6) sorted by relevance

/third_party/python/Lib/
Dinspect.py365 def isframe(object): function
793 if isframe(object):
982 if isframe(object):
1136 (isframe(object) and object.f_code.co_name == "<module>")):
1622 if not isframe(frame):
Dpdb.py109 if inspect.isframe(obj) and obj.f_globals is obj.f_locals:
Ddoctest.py1114 if inspect.isframe(obj): obj = obj.f_code
Dpydoc.py209 inspect.isroutine(object) or inspect.isframe(object) or
/third_party/python/Lib/test/
Dtest_inspect.py92 inspect.isframe, inspect.isfunction, inspect.ismethod,
137 self.istest(inspect.isframe, 'tb.tb_frame')
317 self.istest(inspect.isframe, 'mod.fr')
/third_party/python/Doc/library/
Dinspect.rst395 .. function:: isframe(object)