Staging
v0.5.1
https://github.com/python/cpython
Revision f222ab14209ed0c01827f10f585b60b7f8b1f956 authored by Tarek Ziadé on 05 March 2010, 00:30:44 UTC, committed by Tarek Ziadé on 05 March 2010, 00:30:44 UTC
........
  r78666 | tarek.ziade | 2010-03-05 01:16:02 +0100 (Fri, 05 Mar 2010) | 1 line

  reverting partially distutils to its 2.6.x state so 2.7a4 looks more like the 2.7b1 in this. the whole revert will occur after a4 is tagged
........
1 parent 3198098
Raw File
Tip revision: f222ab14209ed0c01827f10f585b60b7f8b1f956 authored by Tarek Ziadé on 05 March 2010, 00:30:44 UTC
Blocked revisions 78666 via svnmerge
Tip revision: f222ab1
moduleobject.h

/* Module object interface */

#ifndef Py_MODULEOBJECT_H
#define Py_MODULEOBJECT_H
#ifdef __cplusplus
extern "C" {
#endif

PyAPI_DATA(PyTypeObject) PyModule_Type;

#define PyModule_Check(op) PyObject_TypeCheck(op, &PyModule_Type)
#define PyModule_CheckExact(op) (Py_TYPE(op) == &PyModule_Type)

PyAPI_FUNC(PyObject *) PyModule_New(const char *);
PyAPI_FUNC(PyObject *) PyModule_GetDict(PyObject *);
PyAPI_FUNC(char *) PyModule_GetName(PyObject *);
PyAPI_FUNC(char *) PyModule_GetFilename(PyObject *);
PyAPI_FUNC(void) _PyModule_Clear(PyObject *);

#ifdef __cplusplus
}
#endif
#endif /* !Py_MODULEOBJECT_H */
back to top