Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upembed() does not honor locals when a script is used #841
Comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
I'm using bpython to embed a python intepreter into my application. When a script is used, locals through embed() are lost:
The script (bpython_issue_script.py) just contains a test:
print('hello' in locals())It should print
Truebut printsFalsedue to:bpython/bpython/args.py
Line 146 in 077a837
Commenting that line solves this issue for me, but I'm not sure if that is the correct fix.
Thanks!