Staging
v0.8.1
https://github.com/python/cpython
Revision 61b14151cc92021a10f94765eaa152ed04eb262a authored by Batuhan Taşkaya on 12 January 2020, 22:13:31 UTC, committed by Miss Islington (bot) on 12 January 2020, 22:13:31 UTC


https://bugs.python.org/issue39313


Automerge-Triggered-By: @pablogsal
1 parent 14dbe4b
Raw File
Tip revision: 61b14151cc92021a10f94765eaa152ed04eb262a authored by Batuhan Taşkaya on 12 January 2020, 22:13:31 UTC
bpo-39313: Add an option to RefactoringTool for using exec as a function (GH-17967)
Tip revision: 61b1415
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