(msg, attrs, predicate)
| 1444 | return attrs |
| 1445 | |
| 1446 | def spilldescriptors(msg, attrs, predicate): |
| 1447 | ok, attrs = _split_list(attrs, predicate) |
| 1448 | if ok: |
| 1449 | hr.maybe() |
| 1450 | push(msg) |
| 1451 | for name, kind, homecls, value in ok: |
| 1452 | push(self.docdata(value, name, mod)) |
| 1453 | return attrs |
| 1454 | |
| 1455 | def spilldata(msg, attrs, predicate): |
| 1456 | ok, attrs = _split_list(attrs, predicate) |
nothing calls this directly
no test coverage detected