Rest API - HTTP Status Codes
Find the bug in this Flask code that tries to send a 302 redirect:
@app.route('/go')
def go():
response = Response('Redirecting', status=302)
response.headers['Location'] = '/new'
return response
