[Python-checkins] r77832 - python/branches/release31-maint/Lib/unittest.py

r.david.murray python-checkins at python.org
Fri Jan 29 23:26:45 CET 2010


Author: r.david.murray
Date: Fri Jan 29 23:26:45 2010
New Revision: 77832

Log:
Fix typo in assertSequenceEqual docstring.


Modified:
   python/branches/release31-maint/Lib/unittest.py

Modified: python/branches/release31-maint/Lib/unittest.py
==============================================================================
--- python/branches/release31-maint/Lib/unittest.py	(original)
+++ python/branches/release31-maint/Lib/unittest.py	Fri Jan 29 23:26:45 2010
@@ -692,7 +692,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