MCPcopy Create free account
hub / github.com/baldurk/renderdoc / PyFrame_GetGlobals

Function PyFrame_GetGlobals

qrenderdoc/3rdparty/pythoncapi_compat.h:203–206  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

201// bpo-40421 added PyFrame_GetGlobals() to Python 3.11.0a7
202#if PY_VERSION_HEX < 0x030B00A7 && !defined(PYPY_VERSION)
203static inline PyObject* PyFrame_GetGlobals(PyFrameObject *frame)
204{
205 return Py_NewRef(frame->f_globals);
206}
207#endif
208
209

Callers 2

outstream_writeMethod · 0.85
GetCurrentGlobalHandleFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected