﻿id,summary,reporter,owner,description,type,status,priority,milestone,component,version,resolution,keywords,cc
81,local-name() doesn't work with attributes,dackze+genshi@…,cmlenz,"Given:
{{{
#!xml
<html xmlns=""http://www.w3.org/1999/xhtml""
      xmlns:py=""http://genshi.edgewall.org/"">
  <foo py:match=""foo"">
    ${select('@*[local-name() = ""c""]')}
  </foo>

  <foo a=""1"" b=""2"" c=""3"" />
</html>
}}}
The following is produced:
{{{
#!xml
<html xmlns=""http://www.w3.org/1999/xhtml"">
  <foo>
  </foo>
</html>
}}}
But you'd expect:
{{{
#!xml
<html xmlns=""http://www.w3.org/1999/xhtml"">
  <foo>
    3
  </foo>
</html>
}}}

`select('@*[local-name() = ""c""]')` should be equivalent to `select('@c')`.",defect,new,major,,XPath support,devel,,,james.harris@… remy.blank@…
