(self, item)
| 319 | dict.__init__(self, [(k, convert(v)) for k, v in data.items()]) |
| 320 | |
| 321 | def __getitem__(self, item): |
| 322 | try: |
| 323 | return dict.__getitem__(self, item) |
| 324 | except KeyError: |
| 325 | # Unlike a defaultdict, don't set the key, just return a dict. |
| 326 | return ScenarioDict({}) |
| 327 | |
| 328 | |
| 329 | class CompareType: |
nothing calls this directly
no test coverage detected