Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(8) | Call(7) | 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/d/e/devpi-server-1.2.2/devpi_server/views.py devpi-server(Download)
), html.body( html.h1(title), "\n", bodytags )
src/p/l/plexnet-HEAD/third_party/generic/pypy/pypy/translator/microbench/pybench/pybench.py plexnet(Download)
def __init__(self, title=None): self.body = html.body() self.head = html.head() self.doc = html.html(self.head, self.body)
src/s/y/Sypy-HEAD/translator/microbench/pybench/pybench.py Sypy(Download)
def __init__(self, title=None): self.body = html.body() self.head = html.head() self.doc = html.html(self.head, self.body)
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'),
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'),
src/p/l/plexnet-HEAD/third_party/generic/pypy/py/xmlobj/testing/test_html.py plexnet(Download)
class body(html.body): style = html.Style(font_size = "12pt") u = unicode(my.body()) assert u == '<body style="font-size: 12pt"></body>' def test_class_None(): t = html.body(class_=None)