Staging
v0.5.1
https://github.com/python/cpython
Revision a125561397c80a30db74f6ac289781fb53af9196 authored by Miss Islington (bot) on 03 June 2020, 15:09:49 UTC, committed by GitHub on 03 June 2020, 15:09:49 UTC

Inline with the rest of the file, updated error message to use f-string.
(cherry picked from commit 5b9fbbabacca0378755fd9cadc4a7cc01a71eaef)

Co-authored-by: aboddie <64019758+aboddie@users.noreply.github.com>
1 parent 74a1fce
Raw File
Tip revision: a125561397c80a30db74f6ac289781fb53af9196 authored by Miss Islington (bot) on 03 June 2020, 15:09:49 UTC
Update error message in _zoneinfo.py to use f-string (GH-20577)
Tip revision: a125561
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