(msg, attrs, predicate)
| 1502 | return attrs |
| 1503 | |
| 1504 | def spilldata(msg, attrs, predicate): |
| 1505 | ok, attrs = _split_list(attrs, predicate) |
| 1506 | if ok: |
| 1507 | hr.maybe() |
| 1508 | push(msg) |
| 1509 | for name, kind, homecls, value in ok: |
| 1510 | doc = getdoc(value) |
| 1511 | try: |
| 1512 | obj = getattr(object, name) |
| 1513 | except AttributeError: |
| 1514 | obj = homecls.__dict__[name] |
| 1515 | push(self.docother(obj, name, mod, maxlen=70, doc=doc) + |
| 1516 | '\n') |
| 1517 | return attrs |
| 1518 | |
| 1519 | attrs = [(name, kind, cls, value) |
| 1520 | for name, kind, cls, value in classify_class_attrs(object) |
nothing calls this directly
no test coverage detected