Staging
v0.5.1
https://github.com/python/cpython
Revision 6f37e3645df5ef1820f3b9d21a0ebed7592d7edc authored by Victor Stinner on 10 February 2017, 10:45:14 UTC, committed by Victor Stinner on 10 February 2017, 10:45:14 UTC
Issue #29100: Catch OverflowError in the new test_timestamp_limits() test.
1 parent b67f096
Raw File
Tip revision: 6f37e3645df5ef1820f3b9d21a0ebed7592d7edc authored by Victor Stinner on 10 February 2017, 10:45:14 UTC
Fix test_datetime on system with 32-bit time_t
Tip revision: 6f37e36
python3dll.c
#include <windows.h>

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