Staging
v0.5.1
https://github.com/python/cpython
Revision 53c53ea4c5440593a527bf3d106b5f7feebeed40 authored by Serhiy Storchaka on 06 December 2016, 17:15:29 UTC, committed by Serhiy Storchaka on 06 December 2016, 17:15:29 UTC
again.  But they still are deprecated and will be disabled in 3.7.
1 parent b0f75c5
Raw File
Tip revision: 53c53ea4c5440593a527bf3d106b5f7feebeed40 authored by Serhiy Storchaka on 06 December 2016, 17:15:29 UTC
Issue #27030: Unknown escapes in re.sub() replacement template are allowed
Tip revision: 53c53ea
python3dll.c
#include <windows.h>

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