﻿id,summary,reporter,owner,description,type,status,priority,milestone,component,version,resolution,keywords,cc
68,results of select don't contain required namespace prefixes,davidf@…,cmlenz,"There are two commented out tests in path.py containing this description:
  attributes that would need a namespace prefix that isn't in the prefix map would need to get an artificial prefix, but currently don't
A cutdown example is:
{{{
#!python
  XML('<root xmlns:f=""FOO""><foo f:bar=""baz""/></root>').select(""foo"").render()
}}}
which returns
{{{
#!xml
  <foo bar=""baz""/>
}}}
but should return something like
{{{
#!xml
  <foo xmlns:f=""FOO"" f:bar=""baz""/>
}}}",defect,new,major,0.9,General,0.3.3,,,davidf@…
