Staging
v0.5.1
https://github.com/python/cpython
Revision 597ebed748d0b0c061f8c108bd98270d103286c1 authored by Andy Lester on 13 February 2020, 04:53:01 UTC, committed by GitHub on 13 February 2020, 04:53:01 UTC
1 parent 8c3aee6
Raw File
Tip revision: 597ebed748d0b0c061f8c108bd98270d103286c1 authored by Andy Lester on 13 February 2020, 04:53:01 UTC
closes bpo-39621: Make buf arg to md5_compress be const. (GH-18497)
Tip revision: 597ebed
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