(self, path)
| 310 | return results |
| 311 | |
| 312 | def getInt(self, path): |
| 313 | value = self.get(path) |
| 314 | if value is None: |
| 315 | return None |
| 316 | |
| 317 | try: |
| 318 | return int(value) |
| 319 | except ValueError: |
| 320 | self._logger.warn("Could not convert %r to a valid integer when getting option %r" % (value, path)) |
| 321 | return None |
| 322 | |
| 323 | def getString(self, path): |
| 324 | value = self.get(path) |
no test coverage detected