| 1503 | void TFE_Py_TapeSetRestartOnThread() { *ThreadTapeIsStopped() = false; } |
| 1504 | |
| 1505 | PyObject* TFE_Py_TapeSetIsStopped() { |
| 1506 | if (*ThreadTapeIsStopped()) { |
| 1507 | Py_RETURN_TRUE; |
| 1508 | } |
| 1509 | Py_RETURN_FALSE; |
| 1510 | } |
| 1511 | |
| 1512 | PyObject* TFE_Py_TapeSetNew(PyObject* persistent, |
| 1513 | PyObject* watch_accessed_variables) { |
nothing calls this directly
no test coverage detected