Staging
v0.5.1
https://github.com/python/cpython
Revision 81d04bcf2124341aa73e5c13c1f1c4bdd3f5dbef authored by Gregory P. Smith on 26 January 2019, 23:19:11 UTC, committed by GitHub on 26 January 2019, 23:19:11 UTC
1 parent d8080c0
Raw File
Tip revision: 81d04bcf2124341aa73e5c13c1f1c4bdd3f5dbef authored by Gregory P. Smith on 26 January 2019, 23:19:11 UTC
Fix docstr/comment typos in _use_posix_spawn(). (GH-11684)
Tip revision: 81d04bc
bltinmodule.h
#ifndef Py_BLTINMODULE_H
#define Py_BLTINMODULE_H
#ifdef __cplusplus
extern "C" {
#endif

PyAPI_DATA(PyTypeObject) PyFilter_Type;
PyAPI_DATA(PyTypeObject) PyMap_Type;
PyAPI_DATA(PyTypeObject) PyZip_Type;

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