Issue #3080: Document the name attribute of the _inittab structure

The name is an ASCII encoded string.
This commit is contained in:
Victor Stinner 2011-03-07 18:34:59 +01:00
parent 21fcd0c9af
commit db536afee1
2 changed files with 6 additions and 6 deletions

View file

@ -87,7 +87,7 @@ PyAPI_FUNC(int)_PyImport_FixupBuiltin(
PyAPI_FUNC(int)_PyImport_FixupExtensionObject(PyObject*, PyObject *, PyObject *);
struct _inittab {
char *name;
char *name; /* ASCII encoded string */
PyObject* (*initfunc)(void);
};
PyAPI_DATA(struct _inittab *) PyImport_Inittab;