MCPcopy Index your code
hub / github.com/python/cpython / combine

Method combine

Lib/configparser.py:320–324  ·  view source on GitHub ↗
(self, others)

Source from the content-addressed store, hash-verified

318 self.message += '\n\t[line %2d]: %s' % (lineno, repr(line))
319
320 def combine(self, others):
321 for other in others:
322 for error in other.errors:
323 self.append(*error)
324 return self
325
326 @staticmethod
327 def _raise_all(exceptions: Iterable['ParsingError']):

Callers 1

_raise_allMethod · 0.45

Calls 1

appendMethod · 0.95

Tested by

no test coverage detected