Staging
v0.5.1
https://github.com/python/cpython
Revision cfb5b87860a6c605c89ec9d409852641ae47f654 authored by Serhiy Storchaka on 08 March 2015, 07:17:28 UTC, committed by Serhiy Storchaka on 08 March 2015, 07:17:28 UTC
2 parent s d5a0be6 + f87afb0
Raw File
Tip revision: cfb5b87860a6c605c89ec9d409852641ae47f654 authored by Serhiy Storchaka on 08 March 2015, 07:17:28 UTC
Issue #21619: Cleaned up test_broken_pipe_cleanup.
Tip revision: cfb5b87
python3dll.c
#include <windows.h>

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