[Python-checkins] r77828 - python/trunk/Lib/unittest/case.py

r.david.murray python-checkins at python.org
Fri Jan 29 20:35:39 CET 2010


Author: r.david.murray
Date: Fri Jan 29 20:35:39 2010
New Revision: 77828

Log:
Fix typo in assertSequenceEqual docstring.


Modified:
   python/trunk/Lib/unittest/case.py

Modified: python/trunk/Lib/unittest/case.py
==============================================================================
--- python/trunk/Lib/unittest/case.py	(original)
+++ python/trunk/Lib/unittest/case.py	Fri Jan 29 20:35:39 2010
@@ -505,7 +505,7 @@
     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:


More information about the Python-checkins mailing list