OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:excname
(Results
1 - 5
of
5
) sorted by null
/external/python/cpython3/Lib/
_compat_pickle.py
151
for
excname
in PYTHON2_EXCEPTIONS:
152
NAME_MAPPING[("exceptions",
excname
)] = ("builtins",
excname
)
161
for
excname
in MULTIPROCESSING_EXCEPTIONS:
162
NAME_MAPPING[("multiprocessing",
excname
)] = ("multiprocessing.context",
excname
)
243
for
excname
in PYTHON3_OSERROR_EXCEPTIONS:
244
REVERSE_NAME_MAPPING[('builtins',
excname
)] = ('exceptions', 'OSError')
250
for
excname
in PYTHON3_IMPORTERROR_EXCEPTIONS:
251
REVERSE_NAME_MAPPING[('builtins',
excname
)] = ('exceptions', 'ImportError'
[
all
...]
/external/python/cpython3/Lib/test/
test_exception_hierarchy.py
76
excname
, _, errnames = line.partition(' ')
78
_map[getattr(errno, errname)] = getattr(builtins,
excname
)
test_exceptions.py
32
def raise_catch(self, exc,
excname
):
42
self.assertEqual(exc.__name__,
excname
)
[
all
...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_exceptions.py
26
def raise_catch(self, exc,
excname
):
36
self.assertEqual(exc.__name__,
excname
)
/external/python/cpython2/Lib/test/
test_exceptions.py
31
def raise_catch(self, exc,
excname
):
41
self.assertEqual(exc.__name__,
excname
)
Completed in 162 milliseconds