Staging
v0.5.1
https://github.com/python/cpython
Revision b417332bf44af93c8acda4b7197181d4b62c16a4 authored by Miss Islington (bot) on 17 September 2017, 06:01:53 UTC, committed by Terry Jan Reedy on 17 September 2017, 06:01:53 UTC
Canceling timers prevents a warning message when test_idle completes.
(This is the minimum fix needed before upcoming releases.)
(cherry picked from commit a6bb313c70f8619e6dc4af5cef7d73fa3bbd59ca)
1 parent 46c1052
Raw File
Tip revision: b417332bf44af93c8acda4b7197181d4b62c16a4 authored by Miss Islington (bot) on 17 September 2017, 06:01:53 UTC
[3.6] bpo-31493: Fix code context update and font update timers. (GH-3622) (#3623)
Tip revision: b417332
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