Staging
v0.5.1
https://github.com/python/cpython
Revision 9e27bc0c1efc7478872f98729f87886e9333548f authored by Krishna Chivukula on 22 June 2020, 09:06:07 UTC, committed by GitHub on 22 June 2020, 09:06:07 UTC
* fixed issue 41005: webbrowser fails when xdg-settings cannot be executed

Co-authored-by: KrishnaSai2020 <krishnasai.chivukula@gmal.com>
Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com>
1 parent 36ff513
Raw File
Tip revision: 9e27bc0c1efc7478872f98729f87886e9333548f authored by Krishna Chivukula on 22 June 2020, 09:06:07 UTC
bpo-41005: Fixed perrmission error (GH-20936)
Tip revision: 9e27bc0
python.c
/* Minimal main program -- everything is loaded from the library */

#include "Python.h"

#ifdef MS_WINDOWS
int
wmain(int argc, wchar_t **argv)
{
    return Py_Main(argc, argv);
}
#else
int
main(int argc, char **argv)
{
    return Py_BytesMain(argc, argv);
}
#endif
back to top