summaryrefslogtreecommitdiff
path: root/django/http/multipartparser.py
AgeCommit message (Expand)Author
2016-12-07Refs #17235 -- Made MultiPartParser leave request.POST immutable.Vinay Karanam
2016-11-14Fixed E305 flake8 warnings.Ramin Farajpour Cami
2016-06-05Fixed comment typo in multiparser.pyJon Dufresne
2016-06-04Made style improvements to multipartparser.pyAsif Saifuddin Auvi
2016-05-12Fixed #21231 -- Enforced a max size for GET/POST values read into memory.Andre Cruz
2016-05-06Removed HTTP prefixed CONTENT_TYPE/LENGTH headers in MultiPartParser.Tim Graham
2016-05-03Refs #22897 -- Removed unneeded empty string QueryDict argument.Tim Graham
2016-03-07Fixed #26325 -- Made MultiPartParser ignore filenames that normalize to an em...John-Mark Bell
2015-06-17Refs #23763 -- Fixed Python 3.5 PendingDeprecationWarning in LazyStream.Tim Graham
2015-02-06Sorted imports with isort; refs #23860.Tim Graham
2015-01-27Fixed #24209 -- Prevented crash when parsing malformed RFC 2231 headersRaul Cumplido
2014-09-13Fixed #23397 -- Stripped whitespace from base64 during chunkingJason Hobbs
2014-08-14Fixed #22971 -- Properly parsed RFC 2388 encoded headersClaude Paroz
2014-06-11Fixed #22680 -- I/O operation on closed file.Florian Apolloner
2014-05-16Fixed typo in multipartparser.pymbacho
2014-03-03Fixed many typos in comments and docstrings.Rodolfo Carvalho
2013-12-14Fixed E127 pep8 warnings.Loic Bistuer
2013-11-03Fixed all E226 violationsAlex Gaynor
2013-11-03Fixed flake8 E251 violationsMilton Mazzarri
2013-11-02Fixed the remaining E302 violations int eh django packageAlex Gaynor
2013-11-02Fixed all E261 warningscoagulant
2013-11-02More attacking E302 violatorsAlex Gaynor
2013-10-05Fixed #21189: Cleaned up usage of bare except clauses.Baptiste Mispelon
2013-07-11Fixed #13721 -- Added UploadedFile.content_type_extra.Benjamin Kagia
2013-05-25Fixed #19866 -- Added security logger and return 400 for SuspiciousOperation.Preston Holmes
2013-05-17Corrected documentation on the constructor arguments of MultiPartParserEric Urban
2013-05-17Replaced an antiquated pattern.Aymeric Augustin
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