Searched refs:tp_doc (Results 1 – 21 of 21) sorted by relevance
/third_party/python/Doc/includes/ |
D | custom.c | 12 .tp_doc = "Custom objects",
|
D | sublist.c | 34 .tp_doc = "SubList objects",
|
D | typestruct.h | 36 const char *tp_doc; /* Documentation string */ member
|
D | custom2.c | 101 .tp_doc = "Custom objects",
|
D | custom3.c | 151 .tp_doc = "Custom objects",
|
D | custom4.c | 163 .tp_doc = "Custom objects",
|
/third_party/python/Objects/ |
D | picklebufobject.c | 209 .tp_doc = "Wrapper for potentially out-of-band buffers",
|
D | typeslots.inc | 57 offsetof(PyHeapTypeObject, ht_type.tp_doc),
|
D | typeobject.c | 862 if (!(type->tp_flags & Py_TPFLAGS_HEAPTYPE) && type->tp_doc != NULL) { in type_get_doc() 863 return _PyType_GetDocFromInternalDoc(type->tp_name, type->tp_doc); in type_get_doc() 885 return _PyType_GetTextSignatureFromInternalDoc(type->tp_name, type->tp_doc); in type_get_text_signature() 2689 char *tp_doc; in type_new() local 2696 tp_doc = (char *)PyObject_MALLOC(len + 1); in type_new() 2697 if (tp_doc == NULL) { in type_new() 2701 memcpy(tp_doc, doc_str, len + 1); in type_new() 2702 type->tp_doc = tp_doc; in type_new() 3020 char *tp_doc = PyObject_MALLOC(len); in PyType_FromModuleAndSpec() local 3021 if (tp_doc == NULL) { in PyType_FromModuleAndSpec() [all …]
|
D | structseq.c | 410 type->tp_doc = desc->doc; in PyStructSequence_InitType2()
|
D | genericaliasobject.c | 618 .tp_doc = "Represent a PEP 585 generic type\n"
|
/third_party/python/Include/cpython/ |
D | object.h | 228 const char *tp_doc; /* Documentation string */ member
|
/third_party/python/Doc/extending/ |
D | newtypes_tutorial.rst | 92 .tp_doc = "Custom objects", 161 We provide a doc string for the type in :c:member:`~PyTypeObject.tp_doc`. :: 163 .tp_doc = "Custom objects",
|
D | newtypes.rst | 44 const char *tp_doc;
|
/third_party/python/Doc/c-api/ |
D | typeobj.rst | 86 …| :c:member:`~PyTypeObject.tp_doc` | const char * | __doc__ … 1171 .. c:member:: const char* PyTypeObject.tp_doc 2466 .tp_doc = "My objects", 2496 "My objects", /* tp_doc */ 2529 .tp_doc = "My objects", 2556 .tp_doc = "my custom str",
|
/third_party/python/Modules/ |
D | _threadmodule.c | 1605 Locktype.tp_doc = lock_doc; in PyInit__thread()
|
D | _asynciomodule.c | 1537 .tp_doc = _asyncio_Future___init____doc__, 2539 .tp_doc = _asyncio_Task___init____doc__,
|
D | _testcapimodule.c | 6643 .tp_doc = (char*)PyDoc_STR( 6665 .tp_doc = PyDoc_STR( 6687 .tp_doc = PyDoc_STR(
|
D | _datetimemodule.c | 3325 .tp_doc = iso_calendar_date__doc__,
|
/third_party/python/PC/ |
D | winreg.c | 2014 PyHKEY_Type.tp_doc = PyHKEY_doc; in PyInit_winreg()
|
/third_party/python/Misc/ |
D | HISTORY | 32535 object's tp_doc field contains the doc string for the type, and the
|