Changes between Initial Version and Version 2 of Ticket #29510
- Timestamp:
- Jun 25, 2018, 10:05:29 AM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #29510
- Property Component Uncategorized → File uploads/storage
- Property Triage Stage Unreviewed → Accepted
-
Ticket #29510 – Description
initial v2 1 1 When uploaded file size is greater than `FILE_UPLOAD_MAX_MEMORY_SIZE`, Django uses `TemporaryUploadedFile` to represent the file object. However, when executing `.copy()` on a `QueryDict` containing such a file, the returned object has the file but it is in closed state (`seekable()` is `False`). 2 2 3 **Expected**: File should present in open state (`seekable()` should be `True`)3 **Expected**: File should be present in open state (`seekable()` should be `True`) 4 4 5 5 Below is a reproducible example and also contains version details: