Home
last modified time | relevance | path

Searched refs:tp_doc (Results 1 – 25 of 26) sorted by relevance

12

/third_party/python/Doc/includes/
Dcustom.c12 .tp_doc = "Custom objects",
Dtypestruct.h36 const char *tp_doc; /* Documentation string */ member
Dsublist.c34 .tp_doc = "SubList objects",
Dcustom2.c101 .tp_doc = "Custom objects",
Dcustom3.c151 .tp_doc = "Custom objects",
Dcustom4.c163 .tp_doc = "Custom objects",
/third_party/python/Objects/
Dtypeobject.c900 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 …]
Dpicklebufobject.c209 .tp_doc = "Wrapper for potentially out-of-band buffers",
Dtypeslots.inc57 {-1, offsetof(PyTypeObject, tp_doc)},
Dunionobject.c450 .tp_doc = "Represent a PEP 604 union type\n"
Dstructseq.c490 type->tp_doc = desc->doc; in _PyStructSequence_InitType()
Dgenericaliasobject.c636 .tp_doc = "Represent a PEP 585 generic type\n"
/third_party/python/Include/cpython/
Dobject.h226 const char *tp_doc; /* Documentation string */ member
/third_party/alsa-lib/modules/mixer/simple/
Dpython.c711 tp_doc: NULL /* mixerinit__doc__ */,
892 tp_doc: NULL /* mixerinit__doc__ */,
/third_party/python/Doc/c-api/
Dtype.rst188 ``NULL`` as the ``tp_doc`` slot.
Dtypeobj.rst86 …| :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/
Dnewtypes_tutorial.rst93 .tp_doc = "Custom objects",
162 We provide a doc string for the type in :c:member:`~PyTypeObject.tp_doc`. ::
164 .tp_doc = "Custom objects",
Dnewtypes.rst44 const char *tp_doc;
/third_party/python/Modules/
D_asynciomodule.c1540 .tp_doc = _asyncio_Future___init____doc__,
2497 .tp_doc = _asyncio_Task___init____doc__,
D_testcapimodule.c7037 .tp_doc = (char*)PyDoc_STR(
7059 .tp_doc = PyDoc_STR(
7081 .tp_doc = PyDoc_STR(
D_datetimemodule.c3316 .tp_doc = iso_calendar_date__doc__,
/third_party/python/PC/
Dwinreg.c2046 PyHKEY_Type.tp_doc = PyHKEY_doc; in PyInit_winreg()
/third_party/python/Misc/NEWS.d/
D3.10.0a3.rst1448 The :c:func:`PyType_FromModuleAndSpec` function now accepts NULL ``tp_doc``
D3.10.0a1.rst3269 ``tp_doc`` slot accessible from ``__text_signature__``.
/third_party/python/Doc/whatsnew/
D3.10.rst2080 * The :c:func:`PyType_FromModuleAndSpec` function now accepts NULL ``tp_doc``

12