| 7 | } |
| 8 | |
| 9 | void UPythonDelegate::SetPyCallable(PyObject *callable) |
| 10 | { |
| 11 | // do not acquire the gil here as we set the callable in python call themselves |
| 12 | py_callable = callable; |
| 13 | Py_INCREF(py_callable); |
| 14 | } |
| 15 | |
| 16 | void UPythonDelegate::SetSignature(UFunction *original_signature) |
| 17 | { |
nothing calls this directly
no outgoing calls
no test coverage detected