Hacker News new | ask | show | jobs
by revelation 5165 days ago
At least for Python 2.7, you would expect the code run with exec to share the locals and globals with the environment where you called exec from. Thats why the x = x + 1 works, after all.
1 comments

After reading through the bug you linked, now I agree with your statement and not with my first comment here. Will the madness never end?