Staging
v0.8.1
https://github.com/python/cpython
Revision cdce0574d03005e27b843fc110c54c99c7a76412 authored by Victor Stinner on 02 June 2019, 21:08:41 UTC, committed by GitHub on 02 June 2019, 21:08:41 UTC
1 parent aca273e
Raw File
Tip revision: cdce0574d03005e27b843fc110c54c99c7a76412 authored by Victor Stinner on 02 June 2019, 21:08:41 UTC
bpo-36829: test_threading: Fix a ref cycle (GH-13752)
Tip revision: cdce057
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