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

This commit is contained in:
2015-08-31 23:41:13 +10:00
parent a603a3470c
commit 5f64b77ca5

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);