From 7f468f29f49786988e4f1a005174578fc83c7eb9 Mon Sep 17 00:00:00 2001 From: Tim Peters Date: Mon, 11 Oct 2004 02:40:51 +0000 Subject: SF patch 1044089: New C API function PyEval_ThreadsInitialized(), by Nick Coghlan, for determining whether PyEval_InitThreads() has been called. Also purged the undocumented+unused _PyThread_Started int. --- Python/pythonrun.c | 1 - 1 file changed, 1 deletion(-) (limited to 'Python/pythonrun.c') diff --git a/Python/pythonrun.c b/Python/pythonrun.c index 06bec1e038..92e051b176 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -1517,7 +1517,6 @@ Py_FatalError(const char *msg) #ifdef WITH_THREAD #include "pythread.h" -int _PyThread_Started = 0; /* Set by threadmodule.c and maybe others */ #endif #define NEXITFUNCS 32 -- cgit v1.2.1