Staging
v0.8.1
Revision 1a3a48ddaf41dff3c0fcedcfe7ec0940158c568d authored by Miss Islington (bot) on 18 September 2019, 12:43:17 UTC, committed by GitHub on 18 September 2019, 12:43:17 UTC

dump_traceback_later() and cancel_dump_traceback_later() functions of
the faulthandler module are always available since Python 3.7.
(cherry picked from commit 064e1e384120635330493abf300b1113eadd904c)

Co-authored-by: Victor Stinner <vstinner@redhat.com>
1 parent 8b907a8
Raw File
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