(self)
| 62 | def IsExpandable(self): |
| 63 | return True |
| 64 | def GetSubList(self): |
| 65 | sublist = ObjectTreeItem.GetSubList(self) |
| 66 | if len(self.object.__bases__) == 1: |
| 67 | item = make_objecttreeitem("__bases__[0] =", |
| 68 | self.object.__bases__[0]) |
| 69 | else: |
| 70 | item = make_objecttreeitem("__bases__ =", self.object.__bases__) |
| 71 | sublist.insert(0, item) |
| 72 | return sublist |
| 73 | |
| 74 | class AtomicObjectTreeItem(ObjectTreeItem): |
| 75 | def IsExpandable(self): |
nothing calls this directly
no test coverage detected