﻿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
18797	HttpResponse status_code does not appear to be thread safe	dballanc@…	nobody	"The status_code attribute is defined as part of the class, but later is assigned to in init.  I'm not sure how to correct without breaking backwards compatibility. 

{{{
#!python
class HttpResponse(object):
    status_code = 200

    def __init__(self, content='', mimetype=None, status=None, content_type=None):
        #... snip...
        if status:
            self.status_code = status
}}}"	Bug	closed	HTTP handling	1.4	Normal	invalid	status code thread safe httpresponse		Unreviewed	0	0	0	0	1	0
