(msg, attrs, predicate)
| 1453 | return attrs |
| 1454 | |
| 1455 | def spilldata(msg, attrs, predicate): |
| 1456 | ok, attrs = _split_list(attrs, predicate) |
| 1457 | if ok: |
| 1458 | hr.maybe() |
| 1459 | push(msg) |
| 1460 | for name, kind, homecls, value in ok: |
| 1461 | doc = getdoc(value) |
| 1462 | try: |
| 1463 | obj = getattr(object, name) |
| 1464 | except AttributeError: |
| 1465 | obj = homecls.__dict__[name] |
| 1466 | push(self.docother(obj, name, mod, maxlen=70, doc=doc) + |
| 1467 | '\n') |
| 1468 | return attrs |
| 1469 | |
| 1470 | attrs = [(name, kind, cls, value) |
| 1471 | for name, kind, cls, value in classify_class_attrs(object) |
nothing calls this directly
no test coverage detected