mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-05-24 02:37:23 +08:00
* python/python.c (source_python_script): Use ensure_python_env
to prepare environment for script.
This commit is contained in:
@ -367,14 +367,14 @@ gdbpy_parse_and_eval (PyObject *self, PyObject *args)
|
||||
void
|
||||
source_python_script (FILE *stream, char *file)
|
||||
{
|
||||
PyGILState_STATE state;
|
||||
struct cleanup *cleanup;
|
||||
|
||||
state = PyGILState_Ensure ();
|
||||
cleanup = ensure_python_env (get_current_arch (), current_language);
|
||||
|
||||
PyRun_SimpleFile (stream, file);
|
||||
|
||||
fclose (stream);
|
||||
PyGILState_Release (state);
|
||||
do_cleanups (cleanup);
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user