Home
last modified time | relevance | path

Searched refs:getframeinfo (Results 1 – 8 of 8) sorted by relevance

/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/spec_tools/
Dshared.py12 from inspect import getframeinfo
253 frameinfo = getframeinfo(frame)
/third_party/python/Lib/
Dinspect.py1609 def getframeinfo(frame, context=1): function
1655 frameinfo = (frame,) + getframeinfo(frame, context)
1667 frameinfo = (tb.tb_frame,) + getframeinfo(tb, context)
/third_party/python/Misc/NEWS.d/
D3.6.1rc1.rst479 inspect.getframeinfo() now correctly shows the first line of a context.
D3.5.3rc1.rst429 inspect.getframeinfo() now correctly shows the first line of a context.
D3.7.0a1.rst3694 inspect.getframeinfo() now correctly shows the first line of a context.
/third_party/python/Lib/test/
Dtest_coroutines.py2167 info = inspect.getframeinfo(inspect.currentframe().f_back)
Dtest_inspect.py506 frame_info = inspect.getframeinfo(self.fodderModule.fr, 50)
/third_party/python/Doc/library/
Dinspect.rst1224 .. function:: getframeinfo(frame, context=1)