Skip to content

bpo-32030: Fix config_get_program_name() on macOS #4669

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

Merged
merged 1 commit into from
Dec 1, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Modules/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -894,7 +894,7 @@ config_get_program_name(_PyMainInterpreterConfig *config)
return SET_DECODE_ERROR("PYTHONEXECUTABLE environment "
"variable", len);
}
pymain->config.program_name = buffer;
config->program_name = program_name;
}
#ifdef WITH_NEXT_FRAMEWORK
else {
Expand All @@ -909,7 +909,7 @@ config_get_program_name(_PyMainInterpreterConfig *config)
return SET_DECODE_ERROR("__PYVENV_LAUNCHER__ environment "
"variable", len);
}
pymain->config.program_name = program_name;
config->program_name = program_name;
}
}
#endif /* WITH_NEXT_FRAMEWORK */
Expand Down