]> granicus.if.org Git - python/commitdiff
Merged revisions 77828 via svnmerge from
authorR. David Murray <rdmurray@bitdance.com>
Fri, 29 Jan 2010 22:17:58 +0000 (22:17 +0000)
committerR. David Murray <rdmurray@bitdance.com>
Fri, 29 Jan 2010 22:17:58 +0000 (22:17 +0000)
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.
........

Lib/unittest/case.py

index daade71428242117c0db87efdf923e682d8f06fa..8b839c8caeb8dcced5eae9f6fa8c750e975ca06c 100644 (file)
@@ -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: