diff options
author | R. David Murray <rdmurray@bitdance.com> | 2010-01-29 22:17:58 (GMT) |
---|---|---|
committer | R. David Murray <rdmurray@bitdance.com> | 2010-01-29 22:17:58 (GMT) |
commit | ad13f22b7e14f78063aab15007b951d396f6dbb4 (patch) | |
tree | 153c0c9615e53b122ce186bcb255e6040be44d16 /Lib/unittest/case.py | |
parent | 67d1bbde3fba8530c91e468d2cc6dc36083c0933 (diff) | |
download | cpython-ad13f22b7e14f78063aab15007b951d396f6dbb4.zip cpython-ad13f22b7e14f78063aab15007b951d396f6dbb4.tar.gz cpython-ad13f22b7e14f78063aab15007b951d396f6dbb4.tar.bz2 |
Merged revisions 77828 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r77828 | r.david.murray | 2010-01-29 14:35:39 -0500 (Fri, 29 Jan 2010) | 2 lines
Fix typo in assertSequenceEqual docstring.
........
Diffstat (limited to 'Lib/unittest/case.py')
-rw-r--r-- | Lib/unittest/case.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/unittest/case.py b/Lib/unittest/case.py index daade71..8b839c8 100644 --- a/Lib/unittest/case.py +++ b/Lib/unittest/case.py @@ -518,7 +518,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: |