Staging
v0.5.1
https://github.com/python/cpython
Revision bbeaccc76b2a4a7e2601579446c84cb12fea5f05 authored by terryjreedy on 09 June 2017, 19:59:31 UTC, committed by GitHub on 09 June 2017, 19:59:31 UTC
(cherry picked from commit 295304d412700cc6621bb592109fa42249a9dcdb)
1 parent af609a0
Raw File
Tip revision: bbeaccc76b2a4a7e2601579446c84cb12fea5f05 authored by terryjreedy on 09 June 2017, 19:59:31 UTC
[3.6] IDLE test_textview: add comments and test, increase coverage to 100% (GH-1641) (#2018)
Tip revision: bbeaccc
python3dll.c
#include <windows.h>

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