Staging
v0.5.1
Revision c9c6e9f89aa68ce8094393a1a5575b67d26bc8c8 authored by Julien Palard on 25 November 2020, 09:18:00 UTC, committed by GitHub on 25 November 2020, 09:18:00 UTC
It probably helped a lot a while back, but may not be as usefull
today.  We'll continue monitoring it before deletion, so true
positives can be migrated to rstlint.
1 parent 8d17d2b
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