From: Philippe Ndiaye Date: Sat, 13 Jul 2013 07:55:50 +0000 (+0200) Subject: Changed the "im_used" informational status code for the value given by IANA (226) X-Git-Tag: 2.0~22^2~3^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7bdf37bc272da9ef92a8cf4d58ac886f4c6b2da1;p=services%2Fpython-requests.git Changed the "im_used" informational status code for the value given by IANA (226) See RFC 3229 at http://tools.ietf.org/html/rfc3229#section-10.4.1 and HTTP status codes at http://www.iana.org/assignments/http-status-codes/http-status-codes.xhtml --- diff --git a/requests/status_codes.py b/requests/status_codes.py index de38486..8992a37 100644 --- a/requests/status_codes.py +++ b/requests/status_codes.py @@ -18,7 +18,7 @@ _codes = { 205: ('reset_content', 'reset'), 206: ('partial_content', 'partial'), 207: ('multi_status', 'multiple_status', 'multi_stati', 'multiple_stati'), - 208: ('im_used',), + 226: ('im_used',), # Redirection. 300: ('multiple_choices',),