HomeSort by relevance Sort by last modified time
    Searched refs:pydoc (Results 1 - 15 of 15) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/bin/
pydoc 3 import pydoc
5 pydoc.cli()
  /prebuilts/python/linux-x86/2.7.5/bin/
pydoc 3 import pydoc
5 pydoc.cli()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
cgitb.py 28 import pydoc namespace
109 head = '<body bgcolor="#f0f0f8">' + pydoc.html.heading(
111 strong(pydoc.html.escape(str(etype))),
122 link = '<a href="file://%s">%s</a>' % (file, pydoc.html.escape(file))
130 formatvalue=lambda value: '=' + pydoc.html.repr(value))
146 line = '<tt>=&gt;%s%s</tt>' % (num, pydoc.html.preformat(line))
149 line = '<tt>&nbsp;&nbsp;%s%s</tt>' % (num, pydoc.html.preformat(line))
164 dump.append('%s&nbsp;= %s' % (name, pydoc.html.repr(value)))
173 exception = ['<p>%s: %s' % (strong(pydoc.html.escape(str(etype))),
174 pydoc.html.escape(str(evalue)))
    [all...]
DocXMLRPCServer.py 4 serve pydoc-style documentation in response to HTTP
9 This module is built upon the pydoc and SimpleXMLRPCServer
13 import pydoc namespace
23 class ServerHTMLDoc(pydoc.HTMLDoc):
24 """Class used to generate pydoc HTML document for a server"""
99 docstring = pydoc.getdoc(object)
130 'Methods', '#ffffff', '#eeaa77', pydoc.join(contents))
SimpleXMLRPCServer.py 343 import pydoc namespace
344 return pydoc.getdoc(method)
site.py 446 This is a wrapper around pydoc.help (with a twist).
454 import pydoc namespace
455 return pydoc.help(*args, **kwds)
pydoc.py 5 In the Python interpreter, do "from pydoc import help" to provide online
10 Run "pydoc <name>" to show documentation on something. <name> may be
16 Run "pydoc -k <keyword>" to search for a keyword in the synopsis lines
19 Run "pydoc -p <port>" to start an HTTP server on a given port on the
22 For platforms without a command line, "pydoc -g" starts the HTTP server
25 Run "pydoc -w <name>" to write out the HTML documentation for a module
323 # identifies something in a way that pydoc itself has issues handling;
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
cgitb.py 28 import pydoc namespace
109 head = '<body bgcolor="#f0f0f8">' + pydoc.html.heading(
111 strong(pydoc.html.escape(str(etype))),
122 link = '<a href="file://%s">%s</a>' % (file, pydoc.html.escape(file))
130 formatvalue=lambda value: '=' + pydoc.html.repr(value))
146 line = '<tt>=&gt;%s%s</tt>' % (num, pydoc.html.preformat(line))
149 line = '<tt>&nbsp;&nbsp;%s%s</tt>' % (num, pydoc.html.preformat(line))
164 dump.append('%s&nbsp;= %s' % (name, pydoc.html.repr(value)))
173 exception = ['<p>%s: %s' % (strong(pydoc.html.escape(str(etype))),
174 pydoc.html.escape(str(evalue)))
    [all...]
DocXMLRPCServer.py 4 serve pydoc-style documentation in response to HTTP
9 This module is built upon the pydoc and SimpleXMLRPCServer
13 import pydoc namespace
23 class ServerHTMLDoc(pydoc.HTMLDoc):
24 """Class used to generate pydoc HTML document for a server"""
99 docstring = pydoc.getdoc(object)
130 'Methods', '#ffffff', '#eeaa77', pydoc.join(contents))
SimpleXMLRPCServer.py 343 import pydoc namespace
344 return pydoc.getdoc(method)
site.py 446 This is a wrapper around pydoc.help (with a twist).
454 import pydoc namespace
455 return pydoc.help(*args, **kwds)
pydoc.py 5 In the Python interpreter, do "from pydoc import help" to provide online
10 Run "pydoc <name>" to show documentation on something. <name> may be
16 Run "pydoc -k <keyword>" to search for a keyword in the synopsis lines
19 Run "pydoc -p <port>" to start an HTTP server on a given port on the
22 For platforms without a command line, "pydoc -g" starts the HTTP server
25 Run "pydoc -w <name>" to write out the HTML documentation for a module
323 # identifies something in a way that pydoc itself has issues handling;
    [all...]
  /external/chromium_org/tools/telemetry/build/
update_docs.py 8 import pydoc namespace
24 html = pydoc.html.page(pydoc.describe(module),
25 pydoc.html.document(module, module.__name__))
27 # pydoc writes out html with links in a variety of funky ways. We need
45 # pydoc writes out html with absolute path file links. This is not suitable
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_pydoc.py 6 import pydoc namespace
191 Runs pydoc on the specified module. Returns the stripped
192 output of pydoc.
196 rc, out, err = assert_python_ok('-B', pydoc.__file__, *args, **env)
200 "Returns pydoc generated output as html"
201 doc = pydoc.HTMLDoc()
209 "Returns pydoc generated output as text"
210 doc = pydoc.TextDoc()
217 # cleanup the extra text formatting that pydoc preforms
273 adoc = pydoc.render_doc(A()
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_pydoc.py 6 import pydoc namespace
191 Runs pydoc on the specified module. Returns the stripped
192 output of pydoc.
196 rc, out, err = assert_python_ok('-B', pydoc.__file__, *args, **env)
200 "Returns pydoc generated output as html"
201 doc = pydoc.HTMLDoc()
209 "Returns pydoc generated output as text"
210 doc = pydoc.TextDoc()
217 # cleanup the extra text formatting that pydoc preforms
273 adoc = pydoc.render_doc(A()
    [all...]

Completed in 476 milliseconds