STINNER Victor added the comment:

+PyObject *
+PyState_GetModuleAttr(struct PyModuleDef *def,
+                      const char *name,
+                      PyObject *restrict_type)

When the char* type is used, the function has usually the suffix String. I 
prefer the PyIdentifier API because it avoids to create a temporary Python 
Unicode object.

It's the first type that I see a function getting an attribute which also 
checks for its type. I don't know if the check should be done in 
PyState_GetModuleAttr() or in the _csv module.

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue18710>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to