﻿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
13042	QueryDict documentation doesn't include .keys() or .iterkeys() entries	schwanksta	nobody	"I was checking to see if a QueryDict had a .keys() or .iterkeys() method, but the documentation ([http://docs.djangoproject.com/en/dev/ref/request-response/#querydict-objects]) only lists .items() and .iteritems(). Thinking that this would be a weird omission, I decided to check myself:


{{{
>>> qd = QueryDict('a=1&b=2')
>>> qd
<QueryDict: {u'a': [u'1'], u'b': [u'2']}>
>>> qd.keys()
[u'a', u'b']
>>> qd.iterkeys()
<dictionary-keyiterator object at 0xb467ee0>
}}}

As you can see, the methods exist, but they're just missing from the docs.

"		closed	Documentation	1.1		invalid	querydict keys documentation		Unreviewed	0	0	0	0	0	0
