(elem, path, namespaces=None)
| 402 | # Find first matching object. |
| 403 | |
| 404 | def find(elem, path, namespaces=None): |
| 405 | return next(iterfind(elem, path, namespaces), None) |
| 406 | |
| 407 | ## |
| 408 | # Find all matching objects. |
nothing calls this directly
no test coverage detected
searching dependent graphs…