Staging
v0.5.1
https://github.com/python/cpython
Revision 939e2db48dc3bcb159486b599901b694d2d57f89 authored by Senthil Kumaran on 13 January 2014, 00:06:58 UTC, committed by Senthil Kumaran on 13 January 2014, 00:06:58 UTC
1 parent 0abbe8c
Raw File
Tip revision: 939e2db48dc3bcb159486b599901b694d2d57f89 authored by Senthil Kumaran on 13 January 2014, 00:06:58 UTC
Issue #19082: Working xmlrpc.server and xmlrpc.client examples. Both in modules and in documentation.
Tip revision: 939e2db
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