Staging
v0.5.1
Revision e68c67805e6a4c4ec80bea64be0e8373cc02d322 authored by Pablo Galindo on 25 October 2020, 23:03:41 UTC, committed by GitHub on 25 October 2020, 23:03:41 UTC
1 parent d1a0a96
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