On Wed, 13 Sep 2006, Will Maier wrote: > .*- > > This may be user error, but I think this port is broken. After > installing from either packages on the mirrors (mirrors.tds.net, > rt.fm) or packages built locally, the port's Python modules are > unusable. > > $ sudo pkg_add py-xml > py-xml-0.7.1p0: complete > $ python -c 'import xml' > $ python -c 'import _xmlplus' > $ python -c 'from xml.parsers.xmlproc import xmlproc' > Traceback (most recent call last): > File "<string>", line 1, in ? > ImportError: No module named xmlproc > $ python -c 'from _xmlplus.parsers.xmlproc import xmlproc'
this works: $ python -c 'from _xmlplus.parsers import xmlproc' -d
