summaryrefslogtreecommitdiff
path: root/django/core/files/uploadedfile.py
AgeCommit message (Expand)Author
2026-04-14Fixed #27150 -- Made base File objects truthy by default.VIZZARD-X
2025-07-23Refs #36500 -- Rewrapped long docstrings and block comments via a script.django-bot
2022-02-07Refs #33476 -- Reformatted code with Black.django-bot
2021-05-04Fixed CVE-2021-31542 -- Tightened path & file name sanitation in file uploads.Florian Apolloner
2018-03-12Removed redundant UploadedFile.DEFAULT_CHUNK_SIZE.Sergey Fedoseev
2017-11-06Fixed #28776 -- Fixed a/an/and typos in docs and comments.Дилян Палаузов
2017-06-05Fixed #26651 -- Kept original file suffix in TemporaryUploadedFile nameClaude Paroz
2017-04-07Fixed #27777 -- Made File.open() work with the with statement (#8310)Ingo Klöcker
2017-02-21Refs #27656 -- Updated django.core docstring verbs according to PEP 257.Anton Samarchyan
2017-01-25Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand
2017-01-25Refs #23919 -- Replaced errno checking with PEP 3151 exceptions.Tim Graham
2017-01-20Refs #23919 -- Removed unneeded force_str callsClaude Paroz
2016-06-11Removed unnecessary check in TemporaryUploadedFile.Jon Dufresne
2016-04-08Fixed E128 flake8 warnings in django/.Tim Graham
2015-02-06Sorted imports with isort; refs #23860.Tim Graham
2014-06-11Fixed #22680 -- I/O operation on closed file.Florian Apolloner
2014-02-18Made content_type_extra optional for TemporaryUploadedFile and MemoryUploaded...Dmitro
2013-11-19Use `classmethod` as a decorator.xuxiang
2013-11-03Fixed all E226 violationsAlex Gaynor
2013-11-02Replaced a hardcoded "2" with the right named constantAlex Gaynor
2013-09-10Fixed #21033 -- Fixed uploaded filenames not always being truncated to 255 ch...homm
2013-07-11Fixed #13721 -- Added UploadedFile.content_type_extra.Benjamin Kagia
2012-08-30Replaced some smart_xxx by force_xxx equivalentClaude Paroz
2012-08-12[py3] Made __repr__ return str with Python 3Claude Paroz
2012-08-07[py3] Ported django.utils.encoding.Aymeric Augustin
2012-05-19Marked bytestrings with b prefix. Refs #18269Claude Paroz
2012-05-05Replaced cStringIO.StringIO by io.BytesIO.Claude Paroz
2012-04-29Fixed #18013 -- Use the new 'as' syntax for exceptions.Claude Paroz
2009-05-11Fixed #10404: ImageField height_field and width_field options no longer depen...Jacob Kaplan-Moss
2009-05-08Fixed #7712, #9404, #10249, #10300: a light refactor and cleanup of file stor...Jacob Kaplan-Moss
2008-08-27FIxed #8156: `UploadedFile.__repr__` now returns a string, a good `__repr__` ...Jacob Kaplan-Moss
2008-08-27Fixed #7769: Added a couple missing file methods to `TemporaryUploadedFile`. ...Jacob Kaplan-Moss
2008-08-10Fixed #7830 -- Removed all of the remaining, deprecated, non-oldforms features:Gary Wilson Jr
2008-08-08File storage refactoring, adding far more flexibility to Django's file handli...Jacob Kaplan-Moss
2008-08-05Fixed #7683: Try not to delete uploaded files before moving them, and don't w...Jacob Kaplan-Moss
2008-07-26Fixed #7658 -- Added some Windows-specific tempfile handling. The standardMalcolm Tredinnick
2008-07-12Fixed #7675: corrected TemporaryUploadedFile.temporary_file_path. Thanks, Flo...Jacob Kaplan-Moss
2008-07-07Fixed deprecated UploadedFile.data attribute. Refs #7614.Jacob Kaplan-Moss
2008-07-07Added a missing deprecated property (UploadedFile.filename) from [7859]. Refs...Jacob Kaplan-Moss
2008-07-07Fixed #7614: the quickening has come, and there now is only one UploadedFile....Jacob Kaplan-Moss
2008-07-03Corrected typo in `uploadedfile` module.Gary Wilson Jr
2008-07-01Oops, missed a changed file in [7817].Jacob Kaplan-Moss
2008-07-01Fixed #2070: refactored Django's file upload capabilities.Jacob Kaplan-Moss