Lines Matching defs:func
1771 * or exit func is still waiting to do an import, the import machinery
1774 * Note that Threading.py uses an exit func to do a join on all the
2821 _Py_FatalErrorFunc(const char *func, const char *msg)
2823 fatal_error(fileno(stderr), 1, func, msg, -1);
2828 _Py_FatalErrorFormat(const char *func, const char *format, ...)
2840 if (func) {
2841 PUTS(fd, func);
2862 _Py_FatalRefcountErrorFunc(const char *func, const char *msg)
2864 _Py_FatalErrorFormat(func,
2878 fatal_error(fileno(stderr), 1, status.func, status.err_msg, 1);
2913 int Py_AtExit(void (*func)(void))
2917 _PyRuntime.exitfuncs[_PyRuntime.nexitfuncs++] = func;