Staging
v0.5.1
https://github.com/python/cpython
Revision aa74a53ad61134911ac7904f24fd2630aeaa8ac8 authored by Miss Islington (bot) on 13 December 2019, 23:30:41 UTC, committed by Brett Cannon on 13 December 2019, 23:30:41 UTC
(cherry picked from commit 8289e27393395ee903bd096d42e07c112d7f15c6)

Co-authored-by: Xtreak <tir.karthi@gmail.com>
1 parent 3b18b17
Raw File
Tip revision: aa74a53ad61134911ac7904f24fd2630aeaa8ac8 authored by Miss Islington (bot) on 13 December 2019, 23:30:41 UTC
bpo-36406: Handle namespace packages in doctest (GH-12520) (GH-17591)
Tip revision: aa74a53
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_BytesMain(argc, argv);
}
#endif
back to top