| 174 | |
| 175 | #if !defined(PYPY_VERSION) |
| 176 | static inline PyFrameObject* _PyFrame_GetBackBorrow(PyFrameObject *frame) |
| 177 | { |
| 178 | PyFrameObject *back = PyFrame_GetBack(frame); |
| 179 | Py_XDECREF(back); |
| 180 | return back; |
| 181 | } |
| 182 | #endif |
| 183 | |
| 184 |
nothing calls this directly
no test coverage detected