Searched refs:tp_doc (Results 1 – 25 of 26) sorted by relevance
12
/third_party/python/Doc/includes/ |
D | custom.c | 12 .tp_doc = "Custom objects",
|
D | typestruct.h | 36 const char *tp_doc; /* Documentation string */ member
|
D | sublist.c | 34 .tp_doc = "SubList objects",
|
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 | typeobject.c | 900 if (!(type->tp_flags & Py_TPFLAGS_HEAPTYPE) && type->tp_doc != NULL) { in type_get_doc() 901 return _PyType_GetDocFromInternalDoc(type->tp_name, type->tp_doc); in type_get_doc() 923 return _PyType_GetTextSignatureFromInternalDoc(type->tp_name, type->tp_doc); in type_get_text_signature() 2883 char *tp_doc = (char *)PyObject_Malloc(size); in type_new_set_doc() local 2884 if (tp_doc == NULL) { in type_new_set_doc() 2889 memcpy(tp_doc, doc_str, size); in type_new_set_doc() 2890 type->tp_doc = tp_doc; in type_new_set_doc() 3516 type->tp_doc = NULL; in PyType_FromModuleAndSpec() 3520 char *tp_doc = PyObject_Malloc(len); in PyType_FromModuleAndSpec() local 3521 if (tp_doc == NULL) { in PyType_FromModuleAndSpec() [all …]
|
D | picklebufobject.c | 209 .tp_doc = "Wrapper for potentially out-of-band buffers",
|
D | typeslots.inc | 57 {-1, offsetof(PyTypeObject, tp_doc)},
|
D | unionobject.c | 450 .tp_doc = "Represent a PEP 604 union type\n"
|
D | structseq.c | 490 type->tp_doc = desc->doc; in _PyStructSequence_InitType()
|
D | genericaliasobject.c | 636 .tp_doc = "Represent a PEP 585 generic type\n"
|
/third_party/python/Include/cpython/ |
D | object.h | 226 const char *tp_doc; /* Documentation string */ member
|
/third_party/alsa-lib/modules/mixer/simple/ |
D | python.c | 711 tp_doc: NULL /* mixerinit__doc__ */, 892 tp_doc: NULL /* mixerinit__doc__ */,
|
/third_party/python/Doc/c-api/ |
D | type.rst | 188 ``NULL`` as the ``tp_doc`` slot.
|
D | typeobj.rst | 86 …| :c:member:`~PyTypeObject.tp_doc` | const char * | __doc__ … 1269 .. c:member:: const char* PyTypeObject.tp_doc 2598 .tp_doc = "My objects", 2628 "My objects", /* tp_doc */ 2661 .tp_doc = "My objects", 2689 .tp_doc = "my custom str",
|
/third_party/python/Doc/extending/ |
D | newtypes_tutorial.rst | 93 .tp_doc = "Custom objects", 162 We provide a doc string for the type in :c:member:`~PyTypeObject.tp_doc`. :: 164 .tp_doc = "Custom objects",
|
D | newtypes.rst | 44 const char *tp_doc;
|
/third_party/python/Modules/ |
D | _asynciomodule.c | 1540 .tp_doc = _asyncio_Future___init____doc__, 2497 .tp_doc = _asyncio_Task___init____doc__,
|
D | _testcapimodule.c | 7037 .tp_doc = (char*)PyDoc_STR( 7059 .tp_doc = PyDoc_STR( 7081 .tp_doc = PyDoc_STR(
|
D | _datetimemodule.c | 3316 .tp_doc = iso_calendar_date__doc__,
|
/third_party/python/PC/ |
D | winreg.c | 2046 PyHKEY_Type.tp_doc = PyHKEY_doc; in PyInit_winreg()
|
/third_party/python/Misc/NEWS.d/ |
D | 3.10.0a3.rst | 1448 The :c:func:`PyType_FromModuleAndSpec` function now accepts NULL ``tp_doc``
|
D | 3.10.0a1.rst | 3269 ``tp_doc`` slot accessible from ``__text_signature__``.
|
/third_party/python/Doc/whatsnew/ |
D | 3.10.rst | 2080 * The :c:func:`PyType_FromModuleAndSpec` function now accepts NULL ``tp_doc``
|
12