(msg, attrs, predicate)
| 1001 | return attrs |
| 1002 | |
| 1003 | def spilldescriptors(msg, attrs, predicate): |
| 1004 | ok, attrs = _split_list(attrs, predicate) |
| 1005 | if ok: |
| 1006 | hr.maybe() |
| 1007 | push(msg) |
| 1008 | for name, kind, homecls, value in ok: |
| 1009 | push(self.docdata(value, name, mod)) |
| 1010 | return attrs |
| 1011 | |
| 1012 | def spilldata(msg, attrs, predicate): |
| 1013 | ok, attrs = _split_list(attrs, predicate) |
nothing calls this directly
no test coverage detected