Lines Matching refs:doc
56 PyObject *name, PyObject *doc)
59 if (doc == NULL)
60 doc = Py_None;
64 if (PyDict_SetItem(md_dict, &_Py_ID(__doc__), doc) != 0)
463 PyModule_SetDocString(PyObject *m, const char *doc)
467 v = PyUnicode_FromString(doc);
659 doc: object = None
663 The name must be a string; the optional doc argument can have any type.
667 module___init___impl(PyModuleObject *self, PyObject *name, PyObject *doc)
677 if (module_init_dict(self, dict, name, doc) < 0)