Staging
v0.5.1
https://github.com/python/cpython
Revision 5df4025f42b30aca72f441899b361f748c304c57 authored by Tim Hoffmann on 02 June 2019, 16:58:10 UTC, committed by Pablo Galindo on 02 June 2019, 16:58:10 UTC
1 parent 7ffcf84
Raw File
Tip revision: 5df4025f42b30aca72f441899b361f748c304c57 authored by Tim Hoffmann on 02 June 2019, 16:58:10 UTC
Add description to the command line help of the argument clinic (GH-8518)
Tip revision: 5df4025
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