(self, attr)
| 259 | |
| 260 | # Only called after other approaches fail. |
| 261 | def __getattr__(self, attr): |
| 262 | if (attr == 'array'): |
| 263 | return object.__getattribute__(self, attr) |
| 264 | return self.array.__getattribute__(attr) |
| 265 | |
| 266 | ############################################################# |
| 267 | # Test of class container |
nothing calls this directly
no test coverage detected