Staging
v0.5.1
https://github.com/python/cpython
Revision 19cd5951ec4480c7cfcbcc379b36902312cfb8b8 authored by Miss Islington (bot) on 29 September 2019, 12:20:15 UTC, committed by GitHub on 29 September 2019, 12:20:15 UTC
(cherry picked from commit 58498bc7178608b1ab031994ca09c43889ce3e76)

Co-authored-by: Andrew Svetlov <andrew.svetlov@gmail.com>
1 parent 36c6fa9
Raw File
Tip revision: 19cd5951ec4480c7cfcbcc379b36902312cfb8b8 authored by Miss Islington (bot) on 29 September 2019, 12:20:15 UTC
bpo-38019: correctly handle pause/resume reading of closed asyncio unix pipe (GH-16472)
Tip revision: 19cd595
interpreteridobject.h
#ifndef Py_INTERPRETERIDOBJECT_H
#define Py_INTERPRETERIDOBJECT_H

#ifdef __cplusplus
extern "C" {
#endif

#ifndef Py_LIMITED_API
#  define Py_CPYTHON_INTERPRETERIDOBJECT_H
#  include  "cpython/interpreteridobject.h"
#  undef Py_CPYTHON_INTERPRETERIDOBJECT_H
#endif

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