Staging
v0.5.1
https://github.com/python/cpython
Revision 9b3abacf87653fab707e83b31afd73ac4140228e authored by Mariatta on 03 August 2017, 14:33:33 UTC, committed by GitHub on 03 August 2017, 14:33:33 UTC
"not only is it .." is the correct form, as opposed to:
"not only it is ..."
(cherry picked from commit 87c3c5de731af18a271f4559cd69ccb8d050208f)
1 parent 946a0b6
Raw File
Tip revision: 9b3abacf87653fab707e83b31afd73ac4140228e authored by Mariatta on 03 August 2017, 14:33:33 UTC
[3.6] Improve grammar in asyncio documentation (GH-2993) (GH-2994)
Tip revision: 9b3abac
python3dll.c
#include <windows.h>

BOOL WINAPI
DllMain(HINSTANCE hInstDLL,
        DWORD fdwReason,
        LPVOID lpReserved)
{
    return TRUE;
}
back to top