Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(14) | Call(13) | Derive(1) | Import(0)
src/p/y/py-1.4.20/doc/example/genhtml.py py(Download)
html.meta(name="Content-Type", value="text/html; charset=latin1")), html.body( [html.p(p) for p in paras])) print unicode(doc).encode('latin1')
src/p/y/pytest-mozwebqa-1.1.1/pytest_mozwebqa/html_report.py pytest-mozwebqa(Download)
html.script(src='main.js')), html.body( html.p('Report generated on %s at %s by pytest-mozwebqa %s' % ( generated.strftime('%d-%b-%Y'), generated.strftime('%H:%M:%S'),
html.h2('Summary'), html.p( '%i tests ran in %i seconds.' % (numtests, suite_time_delta), html.br(), html.span('%i passed' % self.passed, class_='passed'), ', ',
src/p/y/pytest-mozwebqa-HEAD/pytest_mozwebqa/html_report.py pytest-mozwebqa(Download)
html.script(src='main.js')), html.body( html.p('Report generated on %s at %s by pytest-mozwebqa %s' % ( generated.strftime('%d-%b-%Y'), generated.strftime('%H:%M:%S'),
html.h2('Summary'), html.p( '%i tests ran in %i seconds.' % (numtests, suite_time_delta), html.br(), html.span('%i passed' % self.passed, class_='passed'), ', ',
src/p/l/plexnet-HEAD/third_party/generic/pypy/pypy/tool/importfun.py plexnet(Download)
head = [html.title(module.name)] body = [html.h1(module.name)] body.append(html.p('This module defines these names:')) listbody = [] defuses = {}
body.append(html.ul(listbody)) body.append(html.p('This module imports the following:')) listbody1 = [] for n in sorted(module._imports):
listbody1.append(html.li(listbody2)) body.append(html.ul(listbody1)) body.append(html.p('This module is imported by the following:')) listbody1 = [] for n in module.importers:
contents.append(html.li(html.a(n, href=link_for_module(ourlink, N)))) body.append(html.p('This name is used in')) body.append(html.ul(contents))
src/s/y/Sypy-HEAD/tool/importfun.py Sypy(Download)
head = [html.title(module.name)] body = [html.h1(module.name)] body.append(html.p('This module defines these names:')) listbody = [] defuses = {}
body.append(html.ul(listbody)) body.append(html.p('This module imports the following:')) listbody1 = [] for n in sorted(module._imports):
listbody1.append(html.li(listbody2)) body.append(html.ul(listbody1)) body.append(html.p('This module is imported by the following:')) listbody1 = [] for n in module.importers:
contents.append(html.li(html.a(n, href=link_for_module(ourlink, N)))) body.append(html.p('This name is used in')) body.append(html.ul(contents))
src/p/l/plexnet-HEAD/third_party/generic/pypy/py/xmlobj/testing/test_html.py plexnet(Download)
class my(html.p): pass x = my("hello") assert unicode(x) == '<p>hello</p>'