Staging
v0.5.1
https://github.com/python/cpython
Revision 61792348039db8f6d5700b3a92a5150e84a61a85 authored by Neal Norwitz on 27 January 2008, 05:02:56 UTC, committed by Neal Norwitz on 27 January 2008, 05:02:56 UTC
Try to prevent this test from being flaky.  We might need a sleep in here
which isn't as bad as it sounds.  The close() *should* raise an exception,
so if it didn't we should give more time to sync and really raise it.
1 parent ab577c1
Raw File
Tip revision: 61792348039db8f6d5700b3a92a5150e84a61a85 authored by Neal Norwitz on 27 January 2008, 05:02:56 UTC
Backport 60342:
Tip revision: 6179234
empty.c
#include <windows.h>
int __stdcall
WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
{
    return 0;
}
back to top