Staging
v0.8.1
https://github.com/python/cpython
Revision d79f3c8b3a544de869e01d8f229f114d7eb2dfa8 authored by Antoine Pitrou on 09 November 2010, 23:10:33 UTC, committed by Antoine Pitrou on 09 November 2010, 23:10:33 UTC
1 parent b1436f1
Raw File
Tip revision: d79f3c8b3a544de869e01d8f229f114d7eb2dfa8 authored by Antoine Pitrou on 09 November 2010, 23:10:33 UTC
Issue #4471: Properly shutdown socket in IMAP.shutdown(). Patch by
Tip revision: d79f3c8
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