(self, encoding='ascii', errors='strict')
| 161 | __slots__ = () |
| 162 | |
| 163 | def decode(self, encoding='ascii', errors='strict'): |
| 164 | result = self._decoded_counterpart(*(x.decode(encoding, errors) |
| 165 | if x is not None else None |
| 166 | for x in self)) |
| 167 | try: |
| 168 | result._keep_empty = self._keep_empty |
| 169 | except AttributeError: |
| 170 | pass |
| 171 | return result |
| 172 | |
| 173 | |
| 174 | class _NetlocResultMixinBase(object): |
no outgoing calls
no test coverage detected