Staging
v0.5.1
https://github.com/python/cpython
Revision ea7f4a5db8fac60553443ee4dbce83be7250214b authored by Tim Peters on 11 January 2002, 04:21:11 UTC, committed by Tim Peters on 11 January 2002, 04:21:11 UTC
but apparently didn't get backstitched into NEWS before the release.
Trimmed trailing whitespace.
1 parent e5f06af
Raw File
Tip revision: ea7f4a5db8fac60553443ee4dbce83be7250214b authored by Tim Peters on 11 January 2002, 04:21:11 UTC
Add blurb about 32-bit Windows installer -- this made the SF release notes,
Tip revision: ea7f4a5
moduleobject.h

/* Module object interface */

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

extern DL_IMPORT(PyTypeObject) PyModule_Type;

#define PyModule_Check(op) ((op)->ob_type == &PyModule_Type)

extern DL_IMPORT(PyObject *) PyModule_New(char *);
extern DL_IMPORT(PyObject *) PyModule_GetDict(PyObject *);
extern DL_IMPORT(char *) PyModule_GetName(PyObject *);
extern DL_IMPORT(char *) PyModule_GetFilename(PyObject *);
extern DL_IMPORT(void) _PyModule_Clear(PyObject *);

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