Staging
v0.5.1
https://github.com/python/cpython
Revision 9129af6050b747f288baa9d4e7d43031647ed222 authored by kj on 30 October 2020, 04:01:17 UTC, committed by GitHub on 30 October 2020, 04:01:17 UTC


Follow up to 7cdf30fff39ea97f403b5472096349998d190e30 and 4173320920706b49a004bdddd8d7108e8984e3fc. This addresses the point "1. Update links in typing, subscription and union to point to GenericAlias." in the bpo for this PR.
1 parent 3317466
Raw File
Tip revision: 9129af6050b747f288baa9d4e7d43031647ed222 authored by kj on 30 October 2020, 04:01:17 UTC
bpo-42198: Link to GenericAlias in typing and expressions (GH-23030)
Tip revision: 9129af6
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