| 156 | #endif |
| 157 | |
| 158 | static inline PyCodeObject* _PyFrame_GetCodeBorrow(PyFrameObject *frame) |
| 159 | { |
| 160 | PyCodeObject *code = PyFrame_GetCode(frame); |
| 161 | Py_DECREF(code); |
| 162 | return code; |
| 163 | } |
| 164 | |
| 165 | |
| 166 | // bpo-40421 added PyFrame_GetBack() to Python 3.9.0b1 |
nothing calls this directly
no test coverage detected