(msg, attrs, predicate)
| 1493 | return attrs |
| 1494 | |
| 1495 | def spilldescriptors(msg, attrs, predicate): |
| 1496 | ok, attrs = _split_list(attrs, predicate) |
| 1497 | if ok: |
| 1498 | hr.maybe() |
| 1499 | push(msg) |
| 1500 | for name, kind, homecls, value in ok: |
| 1501 | push(self.docdata(value, name, mod)) |
| 1502 | return attrs |
| 1503 | |
| 1504 | def spilldata(msg, attrs, predicate): |
| 1505 | ok, attrs = _split_list(attrs, predicate) |
nothing calls this directly
no test coverage detected