* 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
18 lines
352 B
Python
18 lines
352 B
Python
|
|
import py
|
|
class ns(py.xml.Namespace):
|
|
pass
|
|
|
|
doc = ns.books(
|
|
ns.book(
|
|
ns.author("May Day"),
|
|
ns.title("python for java programmers"),),
|
|
ns.book(
|
|
ns.author("why", class_="somecssclass"),
|
|
ns.title("Java for Python programmers"),),
|
|
publisher="N.N",
|
|
)
|
|
print doc.unicode(indent=2).encode('utf8')
|
|
|
|
|