Staging
v0.8.1
https://github.com/python/cpython
Revision 0c8cae16008cecfeafa1ce3bcea76e7db3bb269c authored by Benjamin Peterson on 12 March 2014, 23:05:53 UTC, committed by Benjamin Peterson on 12 March 2014, 23:05:53 UTC
1 parent b4466f0
Raw File
Tip revision: 0c8cae16008cecfeafa1ce3bcea76e7db3bb269c authored by Benjamin Peterson on 12 March 2014, 23:05:53 UTC
use ssl.PROTOCOL_SSLv23 for maximum compatibility (closes #20896)
Tip revision: 0c8cae1
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