(msg, attrs, predicate)
| 1430 | hr = HorizontalRule() |
| 1431 | |
| 1432 | def spill(msg, attrs, predicate): |
| 1433 | ok, attrs = _split_list(attrs, predicate) |
| 1434 | if ok: |
| 1435 | hr.maybe() |
| 1436 | push(msg) |
| 1437 | for name, kind, homecls, value in ok: |
| 1438 | try: |
| 1439 | value = getattr(object, name) |
| 1440 | except Exception: |
| 1441 | # Some descriptors may meet a failure in their __get__. |
| 1442 | # (bug #1785) |
| 1443 | push(self.docdata(value, name, mod)) |
| 1444 | else: |
| 1445 | push(self.document(value, |
| 1446 | name, mod, object, homecls)) |
| 1447 | return attrs |
| 1448 | |
| 1449 | def spilldescriptors(msg, attrs, predicate): |
| 1450 | ok, attrs = _split_list(attrs, predicate) |
nothing calls this directly
no test coverage detected