From: R. David Murray Date: Fri, 29 Jan 2010 19:35:39 +0000 (+0000) Subject: Fix typo in assertSequenceEqual docstring. X-Git-Tag: v2.7a3~65 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=05b41716240e01f603087ec503918161ebb806ec;p=python Fix typo in assertSequenceEqual docstring. --- diff --git a/Lib/unittest/case.py b/Lib/unittest/case.py index 2ebf2da9f3..db51e6dcea 100644 --- a/Lib/unittest/case.py +++ b/Lib/unittest/case.py @@ -505,7 +505,7 @@ class TestCase(object): def assertSequenceEqual(self, seq1, seq2, msg=None, seq_type=None): """An equality assertion for ordered sequences (like lists and tuples). - For the purposes of this function, a valid orderd sequence type is one + For the purposes of this function, a valid ordered sequence type is one which can be indexed, has a length, and has an equality operator. Args: