(self, value)
| 317 | return result |
| 318 | |
| 319 | def convert(self, value): |
| 320 | result = self.configurator.convert(value) |
| 321 | if value is not result: |
| 322 | if type(result) in (ConvertingDict, ConvertingList, |
| 323 | ConvertingTuple): |
| 324 | result.parent = self |
| 325 | return result |
| 326 | |
| 327 | |
| 328 | # The ConvertingXXX classes are wrappers around standard Python containers, |
no outgoing calls
no test coverage detected