* moving in test, misc, code, io directories and py/__init__.py * py/bin/_find.py does not print to stderr anymore * a few fixes to conftest files in other dirs some more fixes and adjustments pending --HG-- branch : trunk
14 lines
261 B
Python
14 lines
261 B
Python
from py.xml import html
|
|
|
|
paras = "First Para", "Second para"
|
|
|
|
doc = html.html(
|
|
html.head(
|
|
html.meta(name="Content-Type", value="text/html; charset=latin1")),
|
|
html.body(
|
|
[html.p(p) for p in paras]))
|
|
|
|
print unicode(doc).encode('latin1')
|
|
|
|
|