(self, protocol_name)
| 161 | self._defaults.update(kwargs) |
| 162 | |
| 163 | def create_parser(self, protocol_name): |
| 164 | parser_cls = PROTOCOL_PARSERS[protocol_name] |
| 165 | return parser_cls(**self._defaults) |
| 166 | |
| 167 | |
| 168 | def create_parser(protocol): |
no outgoing calls
no test coverage detected