(msg, attrs, predicate)
| 938 | return attrs |
| 939 | |
| 940 | def spilldescriptors(msg, attrs, predicate): |
| 941 | ok, attrs = _split_list(attrs, predicate) |
| 942 | if ok: |
| 943 | hr.maybe() |
| 944 | push(msg) |
| 945 | for name, kind, homecls, value in ok: |
| 946 | push(self.docdata(value, name, mod)) |
| 947 | return attrs |
| 948 | |
| 949 | def spilldata(msg, attrs, predicate): |
| 950 | ok, attrs = _split_list(attrs, predicate) |
nothing calls this directly
no test coverage detected