mirror of
https://github.com/python/cpython.git
synced 2026-01-28 13:45:18 +00:00
Run debugger scripts in their own namespaces Previously scripts injected by `sys.remote_exec` were run with the globals of the `__main__` module. Instead, run each injected script with an empty set of globals. If someone really wants to use the `__main__` module's namespace, they can always `import __main__`.
Miscellaneous source files for the main Python shared library