Comment 2 for bug 217644

Revision history for this message
Celso Providelo (cprov) wrote :

It's worth noticing that this problem also afects sliced ResultSets, as in:

{{{
    result = self.Person.select()
   self.assertEquals(result.count(), 2)
   sliced_result = result[1:]
   self.assertEquals(len(list(sliced_result)), 1)
   self.assertEquals(sliced_result.count(), 2)
}}}