Fix T45955: Python's pdb can't show script source

This commit is contained in:
Campbell Barton 2015-08-31 23:41:13 +10:00
parent a603a3470c
commit 5f64b77ca5
Notes: blender-bot 2023-02-14 08:42:51 +01:00
Referenced by issue #45955, Python debugger cannot display source for scripts
1 changed files with 3 additions and 1 deletions

View File

@ -491,7 +491,9 @@ static int python_script_exec(bContext *C, const char *fn, struct Text *text,
* incompatible'.
* So now we load the script file data to a buffer */
{
const char *pystring = "with open(__file__, 'r') as f: exec(f.read())";
const char *pystring =
"ns = globals().copy()\n"
"with open(__file__, 'rb') as f: exec(compile(f.read(), __file__, 'exec'), ns)";
fclose(fp);