On Tue, May 30, 2006 at 12:33:37AM -0500, John A Meinel wrote: [...] > But 'modified' and 'unchanged' shouldn't need to be sorted. > Is there anyway to just assert that a list is sorted for testing purposes? The simplest way is "self.assertEqual(sorted(some_list), some_list)" I think. -Andrew.