﻿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
25599	__iexact filter matches strings of different length	Arvid Halma	nobody	"I would expect that the `__iexact` filter for querying models only results in string matches that possibly differ in case, however, it also matches prefixes...

{{{
MyModel.objects.filter(name__iexact='king').all()
[<MyModel: KING>, <MyModel: King of Spain>, <MyModel: King of Holland>]
}}}

This looks more like `__icontains` to me... I expected only [<MyModel: KING>]
"	Bug	new	Database layer (models, ORM)	1.8	Normal		iexact, filter, query, model		Unreviewed	0	0	0	0	0	0
