Lines Matching refs:result

292         result = self.configurator.convert(value)
294 if value is not result:
295 self[key] = result
296 if type(result) in (ConvertingDict, ConvertingList,
298 result.parent = self
299 result.key = key
300 return result
304 result = self.configurator.convert(value)
306 if value is not result:
307 self[key] = result
308 if type(result) in (ConvertingDict, ConvertingList,
310 result.parent = self
311 result.key = key
312 return result
316 result = self.configurator.convert(value)
317 if value is not result:
318 if type(result) in (ConvertingDict, ConvertingList,
320 result.parent = self
321 result.key = key
322 return result
328 result = self.configurator.convert(value)
330 if value is not result:
331 self[key] = result
332 if type(result) in (ConvertingDict, ConvertingList,
334 result.parent = self
335 result.key = key
336 return result
340 result = self.configurator.convert(value)
341 if value is not result:
342 if type(result) in (ConvertingDict, ConvertingList,
344 result.parent = self
345 return result
351 result = self.configurator.convert(value)
352 if value is not result:
353 if type(result) in (ConvertingDict, ConvertingList,
355 result.parent = self
356 result.key = key
357 return result
486 result = c(**kwargs)
489 setattr(result, name, value)
490 return result
668 result = self.configure_custom(config)
678 result = self.configure_custom(config)
682 result = logging.Formatter(fmt, dfmt)
683 return result
688 result = self.configure_custom(config)
691 result = logging.Filter(name)
692 return result
742 result = factory(**kwargs)
751 result = factory(**kwargs)
753 result.setFormatter(formatter)
755 result.setLevel(logging._checkLevel(level))
757 self.add_filters(result, filters)
758 return result