Staging
v0.5.1
https://github.com/python/cpython
Revision 8085f742f4adfbc85f13fc734dfab036aa23acfb authored by Zackery Spytz on 28 November 2020, 14:27:28 UTC, committed by GitHub on 28 November 2020, 14:27:28 UTC
1 parent 5b0194e
Raw File
Tip revision: 8085f742f4adfbc85f13fc734dfab036aa23acfb authored by Zackery Spytz on 28 November 2020, 14:27:28 UTC
bpo-34215: Clarify IncompleteReadError message when "expected" is None (GH-21925)
Tip revision: 8085f74
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