Get rid of more uses of string and use const in a few places.

This commit is contained in:
Neal Norwitz 2007-08-26 02:21:42 +00:00
parent a9ea3d9778
commit 312e10d63e
2 changed files with 10 additions and 10 deletions

View file

@ -14,8 +14,8 @@ PyAPI_DATA(PyTypeObject) 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(const char *) PyModule_GetName(PyObject *);
PyAPI_FUNC(const char *) PyModule_GetFilename(PyObject *);
PyAPI_FUNC(void) _PyModule_Clear(PyObject *);
#ifdef __cplusplus