https://github.com/python/cpython
Raw File
Tip revision: 1cb9b3608d10787da1a62452e600455f81b1249d authored by Andrew Sanchez on 18 November 2018, 18:13:52 UTC
Make itertools.accumulate intro a little more clear
Tip revision: 1cb9b36
python.c
/* Minimal main program -- everything is loaded from the library */

#include "Python.h"
#include "pycore_pylifecycle.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_UnixMain(argc, argv);
}
#endif
back to top