Staging
v0.5.1
https://github.com/python/cpython
Revision 88b86a9752afc2c50ca196f6ba1a8d62d71cf398 authored by Miss Islington (bot) on 29 August 2020, 16:36:40 UTC, committed by GitHub on 29 August 2020, 16:36:40 UTC
Patch by Michael Haubenwallner.
(cherry picked from commit e6dcd371b2c54a94584dd124e8c592a496d46a47)

Co-authored-by: Stefan Krah <skrah@bytereef.org>
1 parent c01a7ed
Raw File
Tip revision: 88b86a9752afc2c50ca196f6ba1a8d62d71cf398 authored by Miss Islington (bot) on 29 August 2020, 16:36:40 UTC
bpo-19521: Fix parallel build race condition on AIX (GH-22001)
Tip revision: 88b86a9
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