Staging
v0.5.1
https://github.com/python/cpython
Revision 0cd2e81bea639828d7c9a7afc61fb1da9699492c authored by Ivan Levkivskyi on 26 November 2017, 22:23:02 UTC, committed by Mariatta on 26 November 2017, 22:23:02 UTC
- Add "version added: 3.5.2" note where it was missing.
- Remove the mention that Reversible is new in 3.5.2 
1 parent d8d6b91
Raw File
Tip revision: 0cd2e81bea639828d7c9a7afc61fb1da9699492c authored by Ivan Levkivskyi on 26 November 2017, 22:23:02 UTC
bpo-29879: Update typing documentation. (GH-4573)
Tip revision: 0cd2e81
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