Staging
v0.5.1
https://github.com/python/cpython
Revision ef83806f5ec01f34f6cbf4ebb5752875b5961f7e authored by xdegaye on 29 November 2017, 10:43:23 UTC, committed by GitHub on 29 November 2017, 10:43:23 UTC
Remove the test.support.requires_android_level decorator.
1 parent cc55e78
Raw File
Tip revision: ef83806f5ec01f34f6cbf4ebb5752875b5961f7e authored by xdegaye on 29 November 2017, 10:43:23 UTC
bpo-32138: Skip on Android test_faulthandler tests that raise SIGSEGV (GH-4604)
Tip revision: ef83806
WinMain.c
/* Minimal main program -- everything is loaded from the library. */

#include "Python.h"

#define WIN32_LEAN_AND_MEAN
#include <windows.h>

int WINAPI wWinMain(
    HINSTANCE hInstance,      /* handle to current instance */
    HINSTANCE hPrevInstance,  /* handle to previous instance */
    LPWSTR lpCmdLine,         /* pointer to command line */
    int nCmdShow              /* show state of window */
)
{
    return Py_Main(__argc, __wargv);
}
back to top