Kaydet (Commit) 22d80bcf authored tarafından Victor Stinner's avatar Victor Stinner

Merge 3.2: Remove unused variable if Python is build without threads

......@@ -2653,7 +2653,9 @@ PyObject *
PyImport_ImportModuleNoBlock(const char *name)
{
PyObject *nameobj, *modules, *result;
#ifdef WITH_THREAD
long me;
#endif
/* Try to get the module from sys.modules[name] */
modules = PyImport_GetModuleDict();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment