| 1530 | } |
| 1531 | |
| 1532 | PyObject* TFE_Py_TapeSetIsEmpty() { |
| 1533 | if (*ThreadTapeIsStopped() || !HasTape()) { |
| 1534 | Py_RETURN_TRUE; |
| 1535 | } |
| 1536 | Py_RETURN_FALSE; |
| 1537 | } |
| 1538 | |
| 1539 | void TFE_Py_TapeSetRemove(PyObject* tape) { |
| 1540 | auto* stack = GetTapeSet(); |
nothing calls this directly
no test coverage detected