Staging
v0.5.1
https://github.com/python/cpython
Revision 7657f6ba218aa59ee085f2001dc44247f2fd0d4c authored by Yury Selivanov on 13 May 2016, 19:35:28 UTC, committed by Yury Selivanov on 13 May 2016, 19:35:28 UTC
1 parent d76c7c2
Raw File
Tip revision: 7657f6ba218aa59ee085f2001dc44247f2fd0d4c authored by Yury Selivanov on 13 May 2016, 19:35:28 UTC
Issue #26848: Fix asyncio/subprocess.communicate() to handle empty input.
Tip revision: 7657f6b
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