Staging
v0.5.1
https://github.com/python/cpython
Revision 3dca62440cd555dd574367ec1bfec8ea47262c6b authored by Martin Panter on 25 October 2016, 23:41:42 UTC, committed by Martin Panter on 25 October 2016, 23:41:42 UTC
2 parent s 6c2b9d3 + 4afdca0
Raw File
Tip revision: 3dca62440cd555dd574367ec1bfec8ea47262c6b authored by Martin Panter on 25 October 2016, 23:41:42 UTC
Issue #26240: Merge subprocess doc string from 3.5 into 3.6
Tip revision: 3dca624
python3dll.c
#include <windows.h>

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