﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
10139	Slicing an EmptyQuerySet gives a list, not another EmptyQuerySet	Forest Bond	nobody	"This causes problems if you want to do, for example, {{{qs[0:1].get()}}}, which is, arguably, poor form.  Still, I think this is a bug.

{{{
In [25]: type(models.TestRun.objects.none()[0:10])
Out[25]: <type 'list'>

In [26]: type(models.TestRun.objects.all()[0:10])
Out[26]: <class 'django.db.models.query.QuerySet'>
}}}"	Bug	closed	Database layer (models, ORM)	dev	Normal	fixed		Ori Livneh	Ready for checkin	1	0	0	0	0	0
