Merge branch 'blender-v2.90-release' into master

This commit is contained in:
2020-08-06 15:48:42 +10:00
5 changed files with 31 additions and 0 deletions

View File

@@ -438,6 +438,12 @@ static void python_script_error_jump_text(struct Text *text)
}
}
void BPY_python_backtrace(FILE *fp)
{
fputs("\n# Python backtrace\n", fp);
PyC_StackPrint(fp);
}
/* super annoying, undo _PyModule_Clear(), bug [#23871] */
#define PYMODULE_CLEAR_WORKAROUND