Staging
v0.5.1
https://github.com/python/cpython
Revision ad004f9b5a581f577374c56d8ab27e9ef2e73452 authored by xdegaye on 12 November 2017, 17:18:36 UTC, committed by GitHub on 12 November 2017, 17:18:36 UTC
(cherry picked from commit 92c2ca7633c881a56157f2fb8b2e1b8c7114e5fb)
1 parent ea5b545
Raw File
Tip revision: ad004f9b5a581f577374c56d8ab27e9ef2e73452 authored by xdegaye on 12 November 2017, 17:18:36 UTC
[3.6] bpo-28759: Skip some tests on PermissionError raised by Android (GH-4350) (#4380)
Tip revision: ad004f9
python3dll.c
#include <windows.h>

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