Staging
v0.8.1
Revision fb050d0d60f38dc9b6c30df1864020a92981be5b authored by Miss Islington (bot) on 04 September 2020, 21:02:57 UTC, committed by GitHub on 04 September 2020, 21:02:57 UTC
(cherry picked from commit 84a7917b4c9afec07575065cffa143b91fe98c14)

Authored-by: Stefan Krah <skrah@bytereef.org>
1 parent 8f13ff9
Raw File
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