Issue #27652: Expose ESHUTDOWN conditionally
ESHUTDOWN is also exposed conditionally in Modules/errnomodule.c. Patch by Ed Schouten.
This commit is contained in:
parent
01d1719062
commit
a787e5f31d
|
@ -2604,7 +2604,9 @@ _PyExc_Init(PyObject *bltinmod)
|
||||||
ADD_ERRNO(BlockingIOError, EWOULDBLOCK);
|
ADD_ERRNO(BlockingIOError, EWOULDBLOCK);
|
||||||
POST_INIT(BrokenPipeError);
|
POST_INIT(BrokenPipeError);
|
||||||
ADD_ERRNO(BrokenPipeError, EPIPE);
|
ADD_ERRNO(BrokenPipeError, EPIPE);
|
||||||
|
#ifdef ESHUTDOWN
|
||||||
ADD_ERRNO(BrokenPipeError, ESHUTDOWN);
|
ADD_ERRNO(BrokenPipeError, ESHUTDOWN);
|
||||||
|
#endif
|
||||||
POST_INIT(ChildProcessError);
|
POST_INIT(ChildProcessError);
|
||||||
ADD_ERRNO(ChildProcessError, ECHILD);
|
ADD_ERRNO(ChildProcessError, ECHILD);
|
||||||
POST_INIT(ConnectionAbortedError);
|
POST_INIT(ConnectionAbortedError);
|
||||||
|
|
Loading…
Reference in New Issue