Don't force _cursor

This commit is contained in:
Stanivlav Kaledin 2016-11-14 20:06:34 +03:00
parent 2141f2c4c5
commit ac90d6ae5c
2 changed files with 2 additions and 2 deletions

View File

@ -153,7 +153,7 @@ class BaseQuerySet(object):
self.__dict__.update(obj_dict)
# forse load cursor
self._cursor
# self._cursor
def __getitem__(self, key):

View File

@ -70,7 +70,7 @@ class TestQuerysetPickable(unittest.TestCase):
self.assertEqual(loaded.count(), 2)
self.assertEqual(loaded.filter(name="Bob").first().age, 23)