Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gh-120678: pyrepl: Include globals from modules passed with -i #120904

Merged
merged 9 commits into from
Jul 17, 2024
Prev Previous commit
Appease the void
  • Loading branch information
ambv committed Jul 17, 2024
commit d3ba1e72714b55a1c5f206c960858446868f9389
2 changes: 1 addition & 1 deletion Modules/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ pymain_run_command(wchar_t *command)


static int
pymain_start_pyrepl_no_main()
pymain_start_pyrepl_no_main(void)
{
int res = 0;
PyObject *pyrepl, *console, *empty_tuple, *kwargs, *console_result;
Expand Down
Loading