Commit 4a0f8b89 authored by Florent Xicluna's avatar Florent Xicluna

Silence more py3k warnings in unittest.case.

parent 236da4be
...@@ -568,7 +568,7 @@ class TestCase(object): ...@@ -568,7 +568,7 @@ class TestCase(object):
msg: Optional message to use on failure instead of a list of msg: Optional message to use on failure instead of a list of
differences. differences.
""" """
if seq_type != None: if seq_type is not None:
seq_type_name = seq_type.__name__ seq_type_name = seq_type.__name__
if not isinstance(seq1, seq_type): if not isinstance(seq1, seq_type):
raise self.failureException('First sequence is not a %s: %s' raise self.failureException('First sequence is not a %s: %s'
...@@ -802,7 +802,7 @@ class TestCase(object): ...@@ -802,7 +802,7 @@ class TestCase(object):
with warnings.catch_warnings(): with warnings.catch_warnings():
if sys.py3kwarning: if sys.py3kwarning:
# Silence Py3k warning raised during the sorting # Silence Py3k warning raised during the sorting
for _msg in ["dict inequality comparisons", for _msg in ["(code|dict|type) inequality comparisons",
"builtin_function_or_method order comparisons", "builtin_function_or_method order comparisons",
"comparing unequal types"]: "comparing unequal types"]:
warnings.filterwarnings("ignore", _msg, DeprecationWarning) warnings.filterwarnings("ignore", _msg, DeprecationWarning)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment