From db536afee14ebd2b74488313e1b1db5cd17fefdc Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Mon, 7 Mar 2011 18:34:59 +0100 Subject: Issue #3080: Document the name attribute of the _inittab structure The name is an ASCII encoded string. --- Include/import.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Include/import.h') diff --git a/Include/import.h b/Include/import.h index 710fd22914..6a62c94c68 100644 --- a/Include/import.h +++ b/Include/import.h @@ -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; -- cgit v1.2.1