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

Method __init__

Lib/test/test_argparse.py:161–166  ·  view source on GitHub ↗
(self, message, stdout=None, stderr=None, error_code=None)

Source from the content-addressed store, hash-verified

159class ArgumentParserError(Exception):
160
161 def __init__(self, message, stdout=None, stderr=None, error_code=None):
162 Exception.__init__(self, message, stdout, stderr)
163 self.message = message
164 self.stdout = stdout
165 self.stderr = stderr
166 self.error_code = error_code
167
168
169def stderr_to_parser_error(parse_args, *args, **kwargs):

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected