Staging
v0.5.1
https://github.com/python/cpython
Revision ff420f0e08a2443339da0df7ace95e14177bac53 authored by Irit Katriel on 23 November 2020, 13:31:31 UTC, committed by GitHub on 23 November 2020, 13:31:31 UTC
1 parent dd844a2
Raw File
Tip revision: ff420f0e08a2443339da0df7ace95e14177bac53 authored by Irit Katriel on 23 November 2020, 13:31:31 UTC
bpo-28850: Fix PrettyPrinter.format overrides ignored for contents of small containers (GH-22120)
Tip revision: ff420f0
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