(self)
| 1198 | |
| 1199 | @property |
| 1200 | def modCount(self): |
| 1201 | x = 0 |
| 1202 | for i in range(len(self.modules) - 1, -1, -1): |
| 1203 | mod = self.modules[i] |
| 1204 | if not mod.isEmpty: |
| 1205 | x += 1 |
| 1206 | return x |
| 1207 | |
| 1208 | @staticmethod |
| 1209 | def getItemAttrSum(dict, attr): |
nothing calls this directly
no outgoing calls
no test coverage detected