Staging
v0.5.1
https://github.com/python/cpython
Revision 96fb828da305b18336b8d74b14f479c4f286cf7b authored by Miss Islington (bot) on 26 May 2018, 21:57:01 UTC, committed by GitHub on 26 May 2018, 21:57:01 UTC

The failure may be due to the use oF ZFS, a case we already ignore
for Solaris-based systems where ZFS is frequently used.
(cherry picked from commit 09c4a7dee2eb39b515e5f499f184257cdbe9cb42)

Co-authored-by: Ned Deily <nad@python.org>
1 parent e60f6e1
Raw File
Tip revision: 96fb828da305b18336b8d74b14f479c4f286cf7b authored by Miss Islington (bot) on 26 May 2018, 21:57:01 UTC
bpo-33655: Also ignore test_posix_fallocate failures on BSD platforms (GH-7134)
Tip revision: 96fb828
python3dll.c
#include <windows.h>

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