Skip to content
Snippets Groups Projects
Unverified Commit e170e6f2 authored by Guilhem Saurel's avatar Guilhem Saurel Committed by GitHub
Browse files

Merge pull request #81 from nim65s/topic/py39

interpreter: fix deprecation for python 3.9
parents 84df690f 4982119a
No related branches found
No related tags found
No related merge requests found
...@@ -69,7 +69,9 @@ Interpreter::Interpreter() { ...@@ -69,7 +69,9 @@ Interpreter::Interpreter() {
dlopen(PYTHON_LIBRARY, RTLD_LAZY | RTLD_GLOBAL); dlopen(PYTHON_LIBRARY, RTLD_LAZY | RTLD_GLOBAL);
#endif #endif
Py_Initialize(); Py_Initialize();
#if PY_MAJOR_VERSION < 3 || PY_MINOR_VERSION < 7
PyEval_InitThreads(); PyEval_InitThreads();
#endif
mainmod_ = PyImport_AddModule("__main__"); mainmod_ = PyImport_AddModule("__main__");
Py_INCREF(mainmod_); Py_INCREF(mainmod_);
globals_ = PyModule_GetDict(mainmod_); globals_ = PyModule_GetDict(mainmod_);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment