Staging
v0.5.1
https://github.com/python/cpython
Revision ea680631b478f091a171dc802d861f5014f58c8f authored by Miss Islington (bot) on 05 August 2020, 01:56:08 UTC, committed by GitHub on 05 August 2020, 01:56:08 UTC

See PEP 623 for detail.
(cherry picked from commit 270b4ad4df795783d417ba15080da8f95e598689)

Co-authored-by: Inada Naoki <songofacandy@gmail.com>
1 parent 1d16229
Raw File
Tip revision: ea680631b478f091a171dc802d861f5014f58c8f authored by Miss Islington (bot) on 05 August 2020, 01:56:08 UTC
bpo-36346: Doc: Update removal schedule of legacy Unicode (GH-21479)
Tip revision: ea68063
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