Staging
v0.5.1
https://github.com/python/cpython
Revision dfe98a102ec8723d750f78ecda08a7adb9360eb1 authored by Serhiy Storchaka on 09 February 2014, 11:46:20 UTC, committed by Serhiy Storchaka on 09 February 2014, 11:46:20 UTC
2 parent s 2623c8c + 505ff75
Raw File
Tip revision: dfe98a102ec8723d750f78ecda08a7adb9360eb1 authored by Serhiy Storchaka on 09 February 2014, 11:46:20 UTC
Issue #20437: Fixed 22 potential bugs when deleting objects references.
Tip revision: dfe98a1
python3dll.c
#include <windows.h>

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