summaryrefslogtreecommitdiff
path: root/django/core/files/uploadedfile.py
Commit message (Expand)AuthorAgeFilesLines
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-071-12/+42
* Fixed CVE-2021-31542 -- Tightened path & file name sanitation in file uploads.Florian Apolloner2021-05-041-0/+3
* Removed redundant UploadedFile.DEFAULT_CHUNK_SIZE.Sergey Fedoseev2018-03-121-1/+0
* Fixed #28776 -- Fixed a/an/and typos in docs and comments.Дилян Палаузов2017-11-061-1/+1
* Fixed #26651 -- Kept original file suffix in TemporaryUploadedFile nameClaude Paroz2017-06-051-1/+2
* Fixed #27777 -- Made File.open() work with the with statement (#8310)Ingo Klöcker2017-04-071-0/+1
* Refs #27656 -- Updated django.core docstring verbs according to PEP 257.Anton Samarchyan2017-02-211-5/+2
* Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand2017-01-251-5/+4
* Refs #23919 -- Replaced errno checking with PEP 3151 exceptions.Tim Graham2017-01-251-7/+5
* Refs #23919 -- Removed unneeded force_str callsClaude Paroz2017-01-201-3/+1
* Removed unnecessary check in TemporaryUploadedFile.Jon Dufresne2016-06-111-4/+1
* Fixed E128 flake8 warnings in django/.Tim Graham2016-04-081-2/+1
* Sorted imports with isort; refs #23860.Tim Graham2015-02-061-1/+1
* Fixed #22680 -- I/O operation on closed file.Florian Apolloner2014-06-111-3/+0
* Made content_type_extra optional for TemporaryUploadedFile and MemoryUploaded...Dmitro2014-02-181-2/+2
* Use `classmethod` as a decorator.xuxiang2013-11-191-1/+1
* Fixed all E226 violationsAlex Gaynor2013-11-031-1/+1
* Replaced a hardcoded "2" with the right named constantAlex Gaynor2013-11-021-1/+5
* Fixed #21033 -- Fixed uploaded filenames not always being truncated to 255 ch...homm2013-09-101-0/+1
* Fixed #13721 -- Added UploadedFile.content_type_extra.Benjamin Kagia2013-07-111-6/+7
* Replaced some smart_xxx by force_xxx equivalentClaude Paroz2012-08-301-2/+2
* [py3] Made __repr__ return str with Python 3Claude Paroz2012-08-121-2/+2
* [py3] Ported django.utils.encoding.Aymeric Augustin2012-08-071-2/+2
* Marked bytestrings with b prefix. Refs #18269Claude Paroz2012-05-191-2/+2
* Replaced cStringIO.StringIO by io.BytesIO.Claude Paroz2012-05-051-6/+3
* Fixed #18013 -- Use the new 'as' syntax for exceptions.Claude Paroz2012-04-291-1/+1
* Fixed #10404: ImageField height_field and width_field options no longer depen...Jacob Kaplan-Moss2009-05-111-12/+11
* Fixed #7712, #9404, #10249, #10300: a light refactor and cleanup of file stor...Jacob Kaplan-Moss2009-05-081-56/+27
* FIxed #8156: `UploadedFile.__repr__` now returns a string, a good `__repr__` ...Jacob Kaplan-Moss2008-08-271-1/+2
* Fixed #7769: Added a couple missing file methods to `TemporaryUploadedFile`. ...Jacob Kaplan-Moss2008-08-271-13/+14
* Fixed #7830 -- Removed all of the remaining, deprecated, non-oldforms features:Gary Wilson Jr2008-08-101-66/+5
* File storage refactoring, adding far more flexibility to Django's file handli...Jacob Kaplan-Moss2008-08-081-57/+2
* Fixed #7683: Try not to delete uploaded files before moving them, and don't w...Jacob Kaplan-Moss2008-08-051-2/+12
* Fixed #7658 -- Added some Windows-specific tempfile handling. The standardMalcolm Tredinnick2008-07-261-1/+2
* Fixed #7675: corrected TemporaryUploadedFile.temporary_file_path. Thanks, Flo...Jacob Kaplan-Moss2008-07-121-1/+1
* Fixed deprecated UploadedFile.data attribute. Refs #7614.Jacob Kaplan-Moss2008-07-071-1/+9
* Added a missing deprecated property (UploadedFile.filename) from [7859]. Refs...Jacob Kaplan-Moss2008-07-071-0/+1
* Fixed #7614: the quickening has come, and there now is only one UploadedFile....Jacob Kaplan-Moss2008-07-071-43/+105
* Corrected typo in `uploadedfile` module.Gary Wilson Jr2008-07-031-1/+1
* Oops, missed a changed file in [7817].Jacob Kaplan-Moss2008-07-011-2/+2
* Fixed #2070: refactored Django's file upload capabilities.Jacob Kaplan-Moss2008-07-011-0/+190