Opened 13 years ago

Closed 13 years ago

#16691 closed Bug (duplicate)

Slicing none() incorrectly returns a list (expected EmptyQuerySet)

Reported by: raymond.penners@… Owned by: nobody
Component: Database layer (models, ORM) Version: 1.3
Severity: Normal Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

I would expect the latter statement to return an (empty) QuerySet:

>>> type(User.objects.none())
<class 'django.db.models.query.EmptyQuerySet'>
>>> type(User.objects.all()[0:1])
<class 'django.db.models.query.QuerySet'>
>>> type(User.objects.none()[0:1])
<type 'list'>

Change History (1)

comment:1 by Ramiro Morales, 13 years ago

Resolution: duplicate
Status: newclosed

Dupe of #10139

Note: See TracTickets for help on using tickets.
Back to Top