Staging
v0.5.1
https://github.com/python/cpython
Revision 9f004634a2bf50c782e223e2eb386ffa769b901c authored by Yasser A on 30 November 2020, 09:53:11 UTC, committed by GitHub on 30 November 2020, 09:53:11 UTC
1 parent 9654592
Raw File
Tip revision: 9f004634a2bf50c782e223e2eb386ffa769b901c authored by Yasser A on 30 November 2020, 09:53:11 UTC
bpo-42451: Indicate that PyTuple_GetItem does not support negative indices (GH-23529)
Tip revision: 9f00463
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