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