Staging
v0.5.1
https://github.com/python/cpython
Revision 1381bfe9776e64fed45935efbe42a7ee8298bd44 authored by Victor Stinner on 01 June 2018, 14:24:43 UTC, committed by GitHub on 01 June 2018, 14:24:43 UTC
* Add a private _block_on_close attribute to ForkingMixIn and
  ThreadingMixIn classes of socketserver.
* Use _block_on_close=True in test_socketserver and test_logging
1 parent 5dbb48a
Raw File
Tip revision: 1381bfe9776e64fed45935efbe42a7ee8298bd44 authored by Victor Stinner on 01 June 2018, 14:24:43 UTC
bpo-33540, socketserver: Add _block_on_close for tests (GH-7317)
Tip revision: 1381bfe
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