﻿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
14020	Make HttpResponse.get work like dict.get	Michael Schurter	anonymous	"{{{
#!python
>>> from django import http
>>> resp = http.HttpResponse()
>>> resp['Connection'] = 'close'
>>> resp.get('Connection')
Traceback (most recent call last):
  File ""<console>"", line 1, in <module>
TypeError: get() takes exactly 3 arguments (2 given)
}}}

{{{
#!html
<img src=""http://schmichael.com/files/orly.png""/>
}}}

{{{
#!python
>>> foo = {}
>>> foo.get('Connection')
>>> 
}}}"	New feature	closed	HTTP handling	dev	Normal	fixed			Ready for checkin	1	0	0	0	0	0
