Home
last modified time | relevance | path

Searched refs:__doc__ (Results 1 – 25 of 84) sorted by relevance

1234

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Dio.py71 __doc__ = _io._IOBase.__doc__ variable in IOBase
74 __doc__ = _io._RawIOBase.__doc__ variable in RawIOBase
77 __doc__ = _io._BufferedIOBase.__doc__ variable in BufferedIOBase
80 __doc__ = _io._TextIOBase.__doc__ variable in TextIOBase
Dsocket.py185 __doc__ = _realsocket.__doc__ variable in _socketobject
203 close.__doc__ = _realsocket.close.__doc__
208 accept.__doc__ = _realsocket.accept.__doc__
233 p.__doc__ = getattr(_realsocket,_m).__doc__
Dstruct.py3 from _struct import __doc__
Dfunctools.py76 opfunc.__doc__ = getattr(int, opname).__doc__
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_property.py107 self.assertEqual(sub.__class__.spam.__doc__, "SubClass.getter")
113 self.assertEqual(base.__class__.spam.__doc__, "BaseClass.getter")
118 self.assertEqual(base.__class__.spam.__doc__, "spam spam spam")
119 self.assertEqual(sub.__class__.spam.__doc__, "spam spam spam")
126 self.assertEqual(newgettersub.__class__.spam.__doc__, "new docstring")
129 self.assertEqual(newgetter.__class__.spam.__doc__, "new docstring")
163 Foo.spam.__doc__,
184 Foo.spam.__doc__,
196 FooSub.spam.__doc__,
212 self.assertEqual(Foo.spam.__doc__, "a new docstring")
[all …]
Dtest_module.py20 self.assertEqual(foo.__doc__, ModuleType.__doc__)
26 self.assertEqual(foo.__doc__, None)
33 self.assertEqual(foo.__doc__, "foodoc")
41 self.assertEqual(foo.__doc__, u"foodoc\u1234")
52 self.assertEqual(foo.__doc__, "foodoc")
Dtest_funcattrs.py312 self.assertEqual(self.b.__doc__, None)
315 self.b.__doc__ = self.f.a.im_func.__doc__ = docstr
316 self.assertEqual(self.b.__doc__, docstr)
318 self.assertEqual(self.f.a.__doc__, docstr)
319 self.assertEqual(self.fi.a.__doc__, docstr)
324 self.b.__doc__ = "The docstring"
325 del self.b.__doc__
326 self.assertEqual(self.b.__doc__, None)
330 self.assertEqual(self.b.__doc__, None)
Dtest_functools.py203 self.assertEqual(wrapper.__doc__, 'This is a test')
215 self.assertEqual(wrapper.__doc__, None)
231 self.assertEqual(wrapper.__doc__, None)
241 self.assertTrue(wrapper.__doc__.startswith('max('))
265 self.assertEqual(wrapper.__doc__, 'This is a test')
277 self.assertEqual(wrapper.__doc__, None)
296 self.assertEqual(wrapper.__doc__, None)
Dtest_exceptions.py588 self.assertIsNone(error1.__doc__)
592 self.assertEqual(error2.__doc__, doc2)
606 self.assertEqual(error4.__doc__, doc4)
613 self.assertEqual(error5.__doc__, "")
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/newmetaclasses/
DEiffel.py47 if func.__doc__:
48 method.__doc__ = func.__doc__
69 self.__doc__ = func.__doc__
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/framer/framer/
Dfunction.py140 if self.__doc__:
156 self.__doc__ = self._func.__doc__
165 if self.__doc__:
166 v["Docstring"] = cstring(unindent(self.__doc__))
Dbases.py36 if func.__doc__:
76 v["ModuleDocstring"] = cstring(unindent(self.__doc__))
87 if self.__doc__:
119 if self.__doc__:
163 if self.__doc__:
178 if self.__doc__:
180 v["Docstring"] = cstring(unindent(self.__doc__))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dsocket.py181 __doc__ = _realsocket.__doc__ variable in _socketobject
199 close.__doc__ = _realsocket.close.__doc__
204 accept.__doc__ = _realsocket.accept.__doc__
229 p.__doc__ = getattr(_realsocket,_m).__doc__
Dstruct.py3 from _struct import __doc__
Dfunctools.py76 opfunc.__doc__ = getattr(int, opname).__doc__
Dhashlib.py7 __doc__ = """hashlib module - A common interface to many hash functions. variable
Dfractions.py370 forward.__doc__ = monomorphic_operator.__doc__
383 reverse.__doc__ = monomorphic_operator.__doc__
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
Dcheckappend.py54 errprint(str(msg) + "\n\n" + __doc__)
60 errprint(__doc__)
Dhotshotmain.py41 parser = optparse.OptionParser(__doc__)
Drgrep.py60 print __doc__
Dcvsfiles.py25 print __doc__,
Dfixnotice.py53 print __doc__ % globals()
Dndiff.py56 out(__doc__)
Ddb2pickle.py48 sys.stderr.write(__doc__ % globals())
Dpickle2db.py53 sys.stderr.write(__doc__ % globals())

1234