(context, result)
| 116 | # It can be a surprise that '*' includes those, but there is no |
| 117 | # justification for '{*}*' doing the same. |
| 118 | def select(context, result): |
| 119 | for elem in result: |
| 120 | if _isinstance(elem.tag, _str): |
| 121 | yield elem |
| 122 | elif tag == '{}*': |
| 123 | # Any tag that is not in a namespace. |
| 124 | def select(context, result): |
no test coverage detected
searching dependent graphs…