| 563 | } |
| 564 | |
| 565 | void PythonContext::Finish() |
| 566 | { |
| 567 | PyGILState_STATE gil = PyGILState_Ensure(); |
| 568 | |
| 569 | // release our external handle to globals. It'll now only be ref'd from inside |
| 570 | Py_XDECREF(context_namespace); |
| 571 | |
| 572 | PyGILState_Release(gil); |
| 573 | } |
| 574 | |
| 575 | void PythonContext::PausePythonThreading() |
| 576 | { |
no outgoing calls
no test coverage detected