Searched refs:tp_doc (Results 1 - 18 of 18) sorted by relevance
/third_party/python/Doc/includes/ |
H A D | custom.c | 12 .tp_doc = PyDoc_STR("Custom objects"),
|
H A D | typestruct.h | 36 const char *tp_doc; /* Documentation string */ member
|
H A D | sublist.c | 34 .tp_doc = PyDoc_STR("SubList objects"),
|
H A D | custom2.c | 101 .tp_doc = PyDoc_STR("Custom objects"),
|
H A D | custom4.c | 163 .tp_doc = PyDoc_STR("Custom objects"),
|
H A D | custom3.c | 151 .tp_doc = PyDoc_STR("Custom objects"),
|
/third_party/python/Objects/ |
H A D | picklebufobject.c | 209 .tp_doc = PyDoc_STR("Wrapper for potentially out-of-band buffers"),
|
H A D | classobject.c | 337 .tp_doc = method_new__doc__, 538 .tp_doc = instancemethod_new__doc__,
|
H A D | typeobject.c | 871 if (!(type->tp_flags & Py_TPFLAGS_HEAPTYPE) && type->tp_doc != NULL) { in type_get_doc() 872 return _PyType_GetDocFromInternalDoc(type->tp_name, type->tp_doc); in type_get_doc() 894 return _PyType_GetTextSignatureFromInternalDoc(type->tp_name, type->tp_doc); in type_get_text_signature() 2870 /* Set tp_doc to a copy of dict['__doc__'], if the latter is there 2871 and is a string. The __doc__ accessor will first look for tp_doc; 2896 char *tp_doc = (char *)PyObject_Malloc(size); in type_new_set_doc() local 2897 if (tp_doc == NULL) { in type_new_set_doc() 2902 memcpy(tp_doc, doc_str, size); in type_new_set_doc() 2903 type->tp_doc = tp_doc; in type_new_set_doc() 3544 char *tp_doc = PyObject_Malloc(len); PyType_FromModuleAndSpec() local [all...] |
H A D | unionobject.c | 374 .tp_doc = PyDoc_STR("Represent a PEP 604 union type\n"
|
H A D | structseq.c | 485 type->tp_doc = desc->doc; in _PyStructSequence_InitType()
|
H A D | genericaliasobject.c | 938 .tp_doc = genericalias__doc__,
|
/third_party/python/Include/cpython/ |
H A D | object.h | 183 const char *tp_doc; /* Documentation string */ member
|
/third_party/alsa-lib/modules/mixer/simple/ |
H A D | python.c | 711 tp_doc: NULL /* mixerinit__doc__ */, 892 tp_doc: NULL /* mixerinit__doc__ */,
|
/third_party/python/Modules/ |
H A D | _asynciomodule.c | 1518 .tp_doc = _asyncio_Future___init____doc__, 2532 .tp_doc = _asyncio_Task___init____doc__,
|
H A D | _testcapimodule.c | 370 0, /* tp_doc */ 1278 assert(strcmp(class_tp->tp_doc, "a test class") == 0); in test_type_from_ephemeral_spec() 7115 PyDoc_STR("Instantiating this exception starts infinite recursion."), /* tp_doc */ 7196 0, /* tp_doc */ 7893 .tp_doc = (char*)PyDoc_STR( 7915 .tp_doc = PyDoc_STR( 7937 .tp_doc = PyDoc_STR( 8144 now can accept a NULL tp_doc slot. */ in PyInit__testcapi()
|
H A D | _datetimemodule.c | 2829 delta_doc, /* tp_doc */ 3397 .tp_doc = iso_calendar_date__doc__, 3659 date_doc, /* tp_doc */ 3886 tzinfo_doc, /* tp_doc */ 4122 timezone_doc, /* tp_doc */ 4796 time_doc, /* tp_doc */ 6650 datetime_doc, /* tp_doc */
|
/third_party/python/PC/ |
H A D | winreg.c | 377 PyHKEY_doc, /* tp_doc */ 2046 PyHKEY_Type.tp_doc = PyHKEY_doc; in PyInit_winreg()
|
Completed in 43 milliseconds