summaryrefslogtreecommitdiffstats
path: root/Include/import.h
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-03-07 17:34:59 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-03-07 17:34:59 (GMT)
commitdb536afee14ebd2b74488313e1b1db5cd17fefdc (patch)
treee3d6e9c3cbe4382c333b6fc96886731f0938acff /Include/import.h
parent21fcd0c9aff01d69e1e92c1587e59638ff58a690 (diff)
downloadcpython-db536afee14ebd2b74488313e1b1db5cd17fefdc.zip
cpython-db536afee14ebd2b74488313e1b1db5cd17fefdc.tar.gz
cpython-db536afee14ebd2b74488313e1b1db5cd17fefdc.tar.bz2
Issue #3080: Document the name attribute of the _inittab structure
The name is an ASCII encoded string.
Diffstat (limited to 'Include/import.h')
-rw-r--r--Include/import.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/import.h b/Include/import.h
index 710fd22..6a62c94 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;