Initial 3.14 commit

This commit is contained in:
Richie Ward
2025-07-22 07:54:51 +01:00
commit 9853be11ff
5208 changed files with 2891368 additions and 0 deletions

17
Programs/python.c Normal file
View File

@@ -0,0 +1,17 @@
/* 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