summaryrefslogtreecommitdiff
path: root/django/core/files/base.py
Commit message (Expand)AuthorAgeFilesLines
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-071-12/+13
* Fixed "byte string" typo in various docs and comments.Mariusz Felisiak2019-03-281-3/+3
* Fixed typo in ContentFile docstring.Thomas Grainger2018-07-271-1/+1
* Removed redundant UploadedFile.DEFAULT_CHUNK_SIZE.Sergey Fedoseev2018-03-121-1/+1
* Used cached_property for File.size.Sergey Fedoseev2018-03-101-13/+4
* Fixed #29188 -- Fixed ContentFile.size after a write().Alex Stovbur2018-03-081-0/+4
* Fixed #28982 -- Simplified code with and/or.Дилян Палаузов2018-01-031-6/+2
* Fixed #27777 -- Made File.open() work with the with statement (#8310)Ingo Klöcker2017-04-071-0/+2
* Refs #27795 -- Removed unneeded force_text callsClaude Paroz2017-03-041-2/+1
* Refs #27656 -- Updated django.core docstring verbs according to PEP 257.Anton Samarchyan2017-02-211-11/+5
* Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand2017-01-251-1/+1
* Refs #23919 -- Removed unneeded force_str callsClaude Paroz2017-01-201-2/+2
* Refs #23919 -- Removed __nonzero__() methods (for Python 2).Simon Charette2017-01-191-6/+0
* Refs #23919 -- Removed six.<various>_types usageClaude Paroz2017-01-181-5/+4
* Refs #23919 -- Removed six.PY2/PY3 usageClaude Paroz2017-01-181-6/+2
* Refs #23919 -- Removed python_2_unicode_compatible decorator usageClaude Paroz2017-01-181-5/+1
* Refs #23919 -- Removed encoding preambles and future importsClaude Paroz2017-01-181-2/+0
* Replaced smart_* by force_* calls whenever possibleClaude Paroz2016-09-031-2/+2
* Reverted "Fixed #26644 -- Allowed wrapping NamedTemporaryFile with File."Tim Graham2016-06-181-4/+0
* Fixed #26644 -- Allowed wrapping NamedTemporaryFile with File.Hugo Osvaldo Barrera2016-06-141-0/+4
* Fixed #26646 -- Added IOBase methods required by TextIOWrapper to File.Simon Charette2016-05-271-4/+0
* Fixed typo in django.core.files.File docstring.Matt Hooks2015-04-021-1/+1
* Fixed #23888 -- Fixed crash in File.__repr__() when name contains unicode.Sergey Fedoseev2014-11-241-3/+4
* Fixed #8149 -- Made File.__iter__() support universal newlines.Jon Dufresne2014-10-301-7/+34
* Fixed a failing test introduced in 918a16bc4c099ab0cae72a231de3e99e2a9d02cb.Baptiste Mispelon2014-03-221-12/+19
* Fixed #22307 -- Fixed SpooledTemporaryFile bug in File class.Hans Lawrenz2014-03-211-1/+1
* Fixed #22107 -- Fixed django.core.files.File object iteration.Baptiste Mispelon2014-02-201-1/+1
* Fixed all E226 violationsAlex Gaynor2013-11-031-1/+1
* More attacking E302 violatorsAlex Gaynor2013-11-021-0/+2
* Fixed #19367 -- Fixed saving ContentFile in filesystem storageClaude Paroz2012-12-061-3/+6
* Fixed #18963 -- Used a subclass-friendly patternAymeric Augustin2012-11-031-2/+6
* Fixed #11739 -- Made ContentFile support Unicode inputClaude Paroz2012-08-291-2/+4
* Replaced many smart_bytes by force_bytesClaude Paroz2012-08-291-1/+1
* [py3] Fixed file_storage tests.Aymeric Augustin2012-08-181-2/+4
* [py3] Refactored __unicode__ to __str__.Aymeric Augustin2012-08-121-2/+5
* [py3] Replaced some __str__ methods by __unicode__Aymeric Augustin2012-08-121-1/+1
* [py3] Removed redundant __str__ methods.Aymeric Augustin2012-08-121-3/+0
* [py3] Replaced __nonzero__ by __bool__Claude Paroz2012-08-081-2/+4
* [py3] Ported django.utils.encoding.Aymeric Augustin2012-08-071-3/+3
* Fixed #18269 -- Applied unicode_literals for Python 3 compatibility.Claude Paroz2012-06-071-1/+3
* Fixed #14681 -- Do not set mode to None on file-like objects.Claude Paroz2012-05-311-1/+2
* Marked bytestrings with b prefix. Refs #18269Claude Paroz2012-05-191-1/+1
* Used io.BytesIO also for ContentFile.Claude Paroz2012-05-051-2/+2
* Replaced cStringIO.StringIO by io.BytesIO.Claude Paroz2012-05-051-5/+2
* Fixed #15644 -- Improved Django File wrapper to support more file-like object...Claude Paroz2012-04-051-6/+11
* Fixed #16590 -- Accepted a 'name' argument in the constructor of ContentFile,...Aymeric Augustin2011-12-301-2/+2
* Fixed #14749 -- added support for using Django's file object as context manag...Alex Gaynor2010-11-211-0/+6
* Fixed #10404: ImageField height_field and width_field options no longer depen...Jacob Kaplan-Moss2009-05-111-7/+9
* Fixed #10687: fixed request parsing when upload_handlers is empty. Thanks, Ar...Jacob Kaplan-Moss2009-05-081-1/+0
* Fixed #7712, #9404, #10249, #10300: a light refactor and cleanup of file stor...Jacob Kaplan-Moss2009-05-081-57/+19