Staging
v0.5.1
https://github.com/python/cpython
Revision 41063d2a59a24e257cd9ce62137e36c862e3ab1e authored by Victor Stinner on 26 January 2015, 21:30:49 UTC, committed by Victor Stinner on 26 January 2015, 21:30:49 UTC
If ReadFile() fails with ERROR_BROKEN_PIPE, the operation is not pending: don't
register the overlapped.

I don't know if WSARecv() can fail with ERROR_BROKEN_PIPE. Since
Overlapped.WSARecv() already handled ERROR_BROKEN_PIPE, let me guess that it
has the same behaviour than ReadFile().
1 parent 24dfa3c
Raw File
Tip revision: 41063d2a59a24e257cd9ce62137e36c862e3ab1e authored by Victor Stinner on 26 January 2015, 21:30:49 UTC
asyncio, Tulip issue 204: Fix IocpProactor.recv()
Tip revision: 41063d2
ast.h
#ifndef Py_AST_H
#define Py_AST_H
#ifdef __cplusplus
extern "C" {
#endif

PyAPI_FUNC(int) PyAST_Validate(mod_ty);
PyAPI_FUNC(mod_ty) PyAST_FromNode(
    const node *n,
    PyCompilerFlags *flags,
    const char *filename,       /* decoded from the filesystem encoding */
    PyArena *arena);
PyAPI_FUNC(mod_ty) PyAST_FromNodeObject(
    const node *n,
    PyCompilerFlags *flags,
    PyObject *filename,
    PyArena *arena);

#ifdef __cplusplus
}
#endif
#endif /* !Py_AST_H */
back to top