Lines Matching full:exceptions
81 exceptions = threading.setdefault(value[3].strip(), {})
82 revision = exceptions.setdefault(int(value[4].strip()[3:]),
173 exceptions = None, revision = None, log = EmptyLogger()):
180 if not (arch and version and threading and exceptions and revision):
199 if not exceptions:
202 exceptions = 'seh'
204 exceptions = 'sjlj'
206 exceptions = keys[0]
208 revision = max(versions[version][arch][threading][exceptions].keys())
213 url = versions[version][arch][threading][exceptions][revision]
219 log.debug(' - exceptions: %s', exceptions)
224 slug = '{version}-{arch}-{threading}-{exceptions}-rev{revision}'
229 exceptions = exceptions,
278 parser.add_argument('--exceptions', choices = ['sjlj', 'seh', 'dwarf'],
279 help = 'the method to throw exceptions')
304 exceptions = args.exceptions, revision = args.revision,