OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:warntext
(Results
1 - 2
of
2
) sorted by null
/external/python/cpython2/Lib/test/
test_grammar.py
628
def check(code,
warntext
):
629
with check_py3k_warnings((
warntext
, DeprecationWarning)):
636
self.assertIn(
warntext
, str(cm.exception))
[
all
...]
/external/python/cpython3/Lib/test/
test_grammar.py
923
def check(code,
warntext
):
924
with self.assertWarnsRegex(DeprecationWarning,
warntext
):
929
with self.assertRaisesRegex(SyntaxError,
warntext
):
[
all
...]
Completed in 381 milliseconds