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