Searched refs:func_doc (Results 1 – 5 of 5) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_funcattrs.py | 313 self.assertEqual(self.b.func_doc, None) 317 self.assertEqual(self.b.func_doc, docstr) 327 self.assertEqual(self.b.func_doc, None) 328 self.b.func_doc = "The docstring" 329 del self.b.func_doc 331 self.assertEqual(self.b.func_doc, None)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/ |
D | funcobject.c | 37 op->func_doc = doc; in PyFunction_New() 166 {"func_doc", T_OBJECT, OFF(func_doc), PY_WRITE_RESTRICTED}, 167 {"__doc__", T_OBJECT, OFF(func_doc), PY_WRITE_RESTRICTED}, 346 PyDoc_STRVAR(func_doc, 459 Py_XDECREF(op->func_doc); in func_dealloc() 480 Py_VISIT(f->func_doc); in func_traverse() 568 func_doc, /* tp_doc */
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/ |
D | funcobject.c | 37 op->func_doc = doc; in PyFunction_New() 166 {"func_doc", T_OBJECT, OFF(func_doc), PY_WRITE_RESTRICTED}, 167 {"__doc__", T_OBJECT, OFF(func_doc), PY_WRITE_RESTRICTED}, 346 PyDoc_STRVAR(func_doc, 459 Py_XDECREF(op->func_doc); in func_dealloc() 480 Py_VISIT(f->func_doc); in func_traverse() 568 func_doc, /* tp_doc */
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/ |
D | funcobject.h | 27 PyObject *func_doc; /* The __doc__ attribute, can be anything */ member
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/ |
D | funcobject.h | 27 PyObject *func_doc; /* The __doc__ attribute, can be anything */ member
|