/external/python/cpython2/Doc/includes/ |
D | typestruct.h | 35 char *tp_doc; /* Documentation string */ member
|
/external/python/cpython3/Doc/includes/ |
D | typestruct.h | 36 const char *tp_doc; /* Documentation string */ member
|
/external/python/cpython3/Objects/ |
D | typeslots.inc | 57 offsetof(PyHeapTypeObject, ht_type.tp_doc),
|
D | typeobject.c | 774 if (!(type->tp_flags & Py_TPFLAGS_HEAPTYPE) && type->tp_doc != NULL) { in type_get_doc() 775 return _PyType_GetDocFromInternalDoc(type->tp_name, type->tp_doc); in type_get_doc() 795 return _PyType_GetTextSignatureFromInternalDoc(type->tp_name, type->tp_doc); in type_get_text_signature() 2576 char *tp_doc; in type_new() local 2583 tp_doc = (char *)PyObject_MALLOC(len + 1); in type_new() 2584 if (tp_doc == NULL) { in type_new() 2588 memcpy(tp_doc, doc_str, len + 1); in type_new() 2589 type->tp_doc = tp_doc; in type_new() 2832 char *tp_doc = PyObject_MALLOC(len); in PyType_FromSpecWithBases() local 2833 if (tp_doc == NULL) { in PyType_FromSpecWithBases() [all …]
|
D | structseq.c | 348 type->tp_doc = desc->doc; in PyStructSequence_InitType2()
|
/external/python/cpython2/Objects/ |
D | methodobject.c | 362 const char *doc = self->ob_type->tp_doc; in Py_FindMethodInChain()
|
D | typeobject.c | 595 if (!(type->tp_flags & Py_TPFLAGS_HEAPTYPE) && type->tp_doc != NULL) in type_get_doc() 596 return PyString_FromString(type->tp_doc); in type_get_doc() 2418 char *tp_doc = (char *)PyObject_MALLOC(n+1); in type_new() local 2419 if (tp_doc == NULL) { in type_new() 2423 memcpy(tp_doc, PyString_AS_STRING(doc), n+1); in type_new() 2424 type->tp_doc = tp_doc; in type_new() 2721 PyObject_Free((char *)type->tp_doc); in type_dealloc() 4207 if (type->tp_doc != NULL) { 4208 PyObject *doc = PyString_FromString(type->tp_doc);
|
D | structseq.c | 499 type->tp_doc = desc->doc; in PyStructSequence_InitType()
|
/external/python/cpython2/Include/ |
D | object.h | 358 const char *tp_doc; /* Documentation string */ member
|
/external/python/cpython3/Include/ |
D | object.h | 381 const char *tp_doc; /* Documentation string */ member
|
/external/python/cpython2/Modules/ |
D | threadmodule.c | 922 Locktype.tp_doc = lock_doc; in initthread()
|
/external/python/cpython3/Modules/ |
D | _asynciomodule.c | 904 .tp_doc = _asyncio_Future___init____doc__, 1795 .tp_doc = _asyncio_Task___init____doc__,
|
D | _threadmodule.c | 1391 Locktype.tp_doc = lock_doc; in PyInit__thread()
|
/external/python/cpython3/Doc/extending/ |
D | newtypes.rst | 99 "Noddy objects", /* tp_doc */ 169 We provide a doc string for the type in :c:member:`~PyTypeObject.tp_doc`. :: 171 "Noddy objects", /* tp_doc */ 917 const char *tp_doc; 1445 0, /* tp_doc */
|
/external/python/cpython2/Doc/extending/ |
D | newtypes.rst | 103 "Noddy objects", /* tp_doc */ 179 We provide a doc string for the type in :c:member:`~PyTypeObject.tp_doc`. :: 181 "Noddy objects", /* tp_doc */ 944 char *tp_doc; 1508 0, /* tp_doc */
|
/external/python/cpython3/PC/ |
D | winreg.c | 1882 PyHKEY_Type.tp_doc = PyHKEY_doc; in PyInit_winreg()
|
/external/python/cpython2/PC/ |
D | _winreg.c | 1805 PyHKEY_Type.tp_doc = PyHKEY_doc; in init_winreg()
|
/external/python/cpython3/Doc/c-api/ |
D | typeobj.rst | 480 .. c:member:: const char* PyTypeObject.tp_doc
|
/external/python/cpython2/Doc/c-api/ |
D | typeobj.rst | 571 .. c:member:: char* PyTypeObject.tp_doc
|
/external/python/cpython2/Misc/ |
D | HISTORY | 15156 object's tp_doc field contains the doc string for the type, and the
|
/external/python/cpython3/Misc/ |
D | HISTORY | 32535 object's tp_doc field contains the doc string for the type, and the
|