Searched defs:__doc__ (Results 1 - 11 of 11) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
H A Dstruct.py3 from _struct import __doc__ namespace
H A Dio.py71 __doc__ = _io._IOBase.__doc__ variable in class:IOBase
74 __doc__ = _io._RawIOBase.__doc__ variable in class:RawIOBase
77 __doc__ = _io._BufferedIOBase.__doc__ variable in class:BufferedIOBase
80 __doc__ = _io._TextIOBase.__doc__ variable in class:TextIOBase
H A Dcsv.py12 __doc__ namespace
21 "Error", "Dialect", "__doc__", "excel", "excel_tab",
H A Dsocket.py185 __doc__ = _realsocket.__doc__ variable in class:_socketobject
203 close.__doc__ = _realsocket.close.__doc__
208 accept.__doc__ = _realsocket.accept.__doc__
233 p.__doc__ = getattr(_realsocket,_m).__doc__
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
H A Dstruct.py3 from _struct import __doc__ namespace
H A Dcsv.py12 __doc__ namespace
21 "Error", "Dialect", "__doc__", "excel", "excel_tab",
H A Dsocket.py181 __doc__ = _realsocket.__doc__ variable in class:_socketobject
199 close.__doc__ = _realsocket.close.__doc__
204 accept.__doc__ = _realsocket.accept.__doc__
229 p.__doc__ = getattr(_realsocket,_m).__doc__
H A D_pyio.py229 """Helper for builtins.open.__doc__
235 open.__doc__)
245 __doc__ = DocDescriptor() variable in class:OpenWrapper
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
H A Dcompile.c182 static PyObject *__doc__; variable
262 if (!__doc__) {
263 __doc__ = PyString_InternFromString("__doc__");
264 if (!__doc__)
1205 if (!compiler_nameop(c, __doc__, Store))
2394 /* XXX Leave assert here, but handle __doc__ and the like better */
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
H A Dcompile.c182 static PyObject *__doc__; variable
259 if (!__doc__) {
260 __doc__ = PyString_InternFromString("__doc__");
261 if (!__doc__)
1182 if (!compiler_nameop(c, __doc__, Store))
2374 /* XXX Leave assert here, but handle __doc__ and the like better */
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
H A Dtest_descr.py2021 self.assertIn("__doc__", attrs)
2026 self.assertEqual(raw.__doc__, "I'm the x property.")
2031 for attr in "__doc__", "fget", "fset", "fdel":
2065 self.assertEqual(prop.__doc__, "getter method")
2067 self.assertEqual(prop2.__doc__, None)
2092 self.assertEqual(C.foo.__doc__, "hello")
2244 cstuff = ['Cdata', 'Cmethod', '__doc__', '__module__']
2248 c = C() # c.__doc__ is an odd thing to see here; ditto c.__module__.
2311 names = [x for x in dir(minstance) if x not in ["__name__", "__doc__"]]
3002 self.assertEqual(descr.__doc__, wha
3017 __doc__ = DocDescr() variable in class:.test_doc_descriptor.OldClass
3019 __doc__ = DocDescr() variable in class:.test_doc_descriptor.NewClass
[all...]

Completed in 133 milliseconds