Searched refs:docstr (Results 1 – 10 of 10) sorted by relevance
/third_party/libxml2/python/tests/ |
D | walker.py | 21 docstr="""<foo> variable 39 doc = libxml2.parseDoc(docstr) 60 docstr="""<foo> variable 78 doc = libxml2.parseDoc(docstr) 100 docstr="""<foo> variable 118 reader.NewDoc(docstr, "test3", None, 0)
|
D | reader7.py | 21 docstr="""<foo> variable 39 reader = libxml2.readerForDoc(docstr, "test1", None, 0) 57 docstr="""<foo> variable 75 reader.NewDoc(docstr, "test2", None, 0)
|
D | reader6.py | 44 docstr="""<foo> variable 49 f = str_io(docstr) 68 docstr="""<foo> variable 92 f = str_io(docstr)
|
D | reader8.py | 14 docstr="""<foo> variable 19 reader = libxml2.readerForDoc(docstr, "test1", None, 0)
|
D | reader3.py | 14 docstr="""<?xml version='1.0'?> variable 26 f = str_io(docstr) 63 f = str_io(docstr)
|
/third_party/python/Objects/ |
D | classobject.c | 162 static PyObject *docstr; in method_get_doc() local 163 if (docstr == NULL) { in method_get_doc() 164 docstr= PyUnicode_InternFromString("__doc__"); in method_get_doc() 165 if (docstr == NULL) in method_get_doc() 168 return PyObject_GetAttr(im->im_func, docstr); in method_get_doc() 410 static PyObject *docstr; in instancemethod_get_doc() local 411 if (docstr == NULL) { in instancemethod_get_doc() 412 docstr = PyUnicode_InternFromString("__doc__"); in instancemethod_get_doc() 413 if (docstr == NULL) in instancemethod_get_doc() 416 return PyObject_GetAttr(PyInstanceMethod_GET_FUNCTION(self), docstr); in instancemethod_get_doc()
|
/third_party/python/Lib/test/ |
D | test_funcattrs.py | 355 docstr = "A test method that does nothing" 356 self.b.__doc__ = docstr 357 self.F.a.__doc__ = docstr 358 self.assertEqual(self.b.__doc__, docstr) 359 self.assertEqual(self.fi.a.__doc__, docstr) 360 self.cannot_set_attr(self.fi.a, "__doc__", docstr, AttributeError)
|
/third_party/python/Lib/ |
D | turtle.py | 3916 def _turtle_docrevise(docstr): argument 3920 if docstr is None: 3923 newdocstr = docstr.replace("%s." % turtlename,"") 3928 def _screen_docrevise(docstr): argument 3932 if docstr is None: 3935 newdocstr = docstr.replace("%s." % screenname,"")
|
/third_party/python/Tools/c-analyzer/ |
D | TODO | 192 Objects/classobject.c:instancemethod_get_doc():docstr static PyObject *docstr 193 Objects/classobject.c:method_get_doc():docstr static PyObject *docstr
|
/third_party/python/Tools/c-analyzer/cpython/ |
D | ignored.tsv | 2036 Objects/classobject.c method_get_doc docstr - 2037 Objects/classobject.c instancemethod_get_doc docstr -
|