summaryrefslogtreecommitdiff
path: root/django/http/multipartparser.py
AgeCommit message (Expand)Author
2013-03-19Fixed #18003 -- Preserved tracebacks when re-raising errors.konarkmodi
2013-01-15Kill mx.TextTools with fireMatt Robenolt
2012-11-17Fixed #19036 -- Fixed base64 uploads decodingClaude Paroz
2012-11-03Fixed #18963 -- Used a subclass-friendly patternAymeric Augustin
2012-11-03Fixed #19101 -- Decoding of non-ASCII POST data on Python 3.Aymeric Augustin
2012-09-07Removed many uses of bare "except:", which were either going to a) silence re...Alex Gaynor
2012-08-14[py3] Fixed file_uploads testsClaude Paroz
2012-08-11[py3] Fixed Python 3 compatibility of http handlingClaude Paroz
2012-08-09[py3] Renamed `next` to `__next__` in iterators.Aymeric Augustin
2012-08-07[py3] Ported django.utils.encoding.Aymeric Augustin
2012-07-22[py3] Replaced unicode/str by six.text_type/bytes.Aymeric Augustin
2012-06-07Fixed #18269 -- Applied unicode_literals for Python 3 compatibility.Claude Paroz
2012-05-19Marked bytestrings with b prefix. Refs #18269Claude Paroz
2012-05-10Replaced foo.next() by next(foo).Claude Paroz
2012-04-29Fixed #18013 -- Use the new 'as' syntax for exceptions.Claude Paroz
2011-06-28Fixed #15785 -- Stopped HttpRequest.read() from reading beyond the end of a w...Jannis Leidel
2011-06-10Fixed #16201 -- Ensure that requests with Content-Length=0 don't break the mu...Russell Keith-Magee
2011-05-07Fixed #15496 -- Corrected handling of base64 file upload encoding. Thanks, ge...Jannis Leidel
2009-05-08Fixed #10687: fixed request parsing when upload_handlers is empty. Thanks, Ar...Jacob Kaplan-Moss
2009-03-30Fixed #8643 -- Corrected docstrings of `MultiPartParser`, thanks KayEss.Gary Wilson Jr
2008-07-22Fixed #7848 -- Removed a bunch of code that wasn't contributing to society. T...Adrian Holovaty
2008-07-12Fixed #7635: do a better job checking for infinite loops in multi-part MIME p...Jacob Kaplan-Moss
2008-07-07Fixed #7651: uploading multiple files with the same name now work. Also, in o...Jacob Kaplan-Moss
2008-07-01Fixed #2070: refactored Django's file upload capabilities.Jacob Kaplan-Moss