Staging
v0.5.1
https://github.com/python/cpython
Revision 127242654de9837f4ee544fc3b0a5b22030613e0 authored by Senthil Kumaran on 08 February 2014, 22:28:44 UTC, committed by Senthil Kumaran on 08 February 2014, 22:28:44 UTC
Include the mention of ResourceWarning being displayed by default by the test runner.
Addressing #issue 20529
2 parent s c1567df + 409ea5d
Raw File
Tip revision: 127242654de9837f4ee544fc3b0a5b22030613e0 authored by Senthil Kumaran on 08 February 2014, 22:28:44 UTC
merge from 3.3
Tip revision: 1272426
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