(msg, attrs, predicate)
| 965 | return attrs |
| 966 | |
| 967 | def spilldata(msg, attrs, predicate): |
| 968 | ok, attrs = _split_list(attrs, predicate) |
| 969 | if ok: |
| 970 | hr.maybe() |
| 971 | push(msg) |
| 972 | for name, kind, homecls, value in ok: |
| 973 | base = self.docother(getattr(object, name), name, mod) |
| 974 | doc = getdoc(value) |
| 975 | if not doc: |
| 976 | push('<dl><dt>%s</dl>\n' % base) |
| 977 | else: |
| 978 | doc = self.markup(getdoc(value), self.preformat, |
| 979 | funcs, classes, mdict) |
| 980 | doc = '<dd><span class="code">%s</span>' % doc |
| 981 | push('<dl><dt>%s%s</dl>\n' % (base, doc)) |
| 982 | push('\n') |
| 983 | return attrs |
| 984 | |
| 985 | attrs = [(name, kind, cls, value) |
| 986 | for name, kind, cls, value in classify_class_attrs(object) |
nothing calls this directly
no test coverage detected