Home
last modified time | relevance | path

Searched refs:seq_type (Results 1 – 3 of 3) sorted by relevance

/third_party/python/Lib/unittest/
Dcase.py936 def assertSequenceEqual(self, seq1, seq2, msg=None, seq_type=None): argument
950 if seq_type is not None:
951 seq_type_name = seq_type.__name__
952 if not isinstance(seq1, seq_type):
955 if not isinstance(seq2, seq_type):
1003 if (len1 == len2 and seq_type is None and
1051 self.assertSequenceEqual(list1, list2, msg, seq_type=list)
1062 self.assertSequenceEqual(tuple1, tuple2, msg, seq_type=tuple)
/third_party/alsa-lib/doc/
Dasoundrc.txt393 seq_type.NAME {
/third_party/python/Doc/library/
Dunittest.rst1314 .. method:: assertSequenceEqual(first, second, msg=None, seq_type=None)
1316 Tests that two sequences are equal. If a *seq_type* is supplied, both
1317 *first* and *second* must be instances of *seq_type* or a failure will