gh-120678: pyrepl: Include globals from modules passed with -i (GH-120904)

Co-authored-by: Łukasz Langa <lukasz@langa.pl>
This commit is contained in:
Alex Waygood 2024-07-17 15:18:42 +01:00 committed by GitHub
parent 58753f33e4
commit ac07451116
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 178 additions and 11 deletions

View file

@ -1,3 +1,6 @@
# Important: don't add things to this module, as they will end up in the REPL's
# default globals. Use _pyrepl.main instead.
if __name__ == "__main__":
from .main import interactive_console as __pyrepl_interactive_console
__pyrepl_interactive_console()