Staging
v0.5.1
https://github.com/python/cpython
Revision e90815b3b16ab196c10f3a4dd91402cdc2e07d06 authored by Miss Islington (bot) on 24 June 2019, 18:18:22 UTC, committed by Ned Deily on 02 July 2019, 02:19:49 UTC
(cherry picked from commit 6ffd9b05dfade9e3a101fe039157856eb855f82e)

Co-authored-by: ziheng <zihenglv@gmail.com>
1 parent 9ad5e9e
Raw File
Tip revision: e90815b3b16ab196c10f3a4dd91402cdc2e07d06 authored by Miss Islington (bot) on 24 June 2019, 18:18:22 UTC
bpo-32627: Fix compile error when conflicting `_uuid` headers included (GH-11751)
Tip revision: e90815b
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_UnixMain(argc, argv);
}
#endif
back to top