Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This change resolves /issues/54 The code in `tab_upload.py` reads uploaded files 1024 bytes at a time. This is not efficient for large files on modern systems. `UploadFile.read()` maps to `RawIOBase.read()` which handles multiple reads to a stream internally. This change delegates stream io to the lower levels of the runtime.
- Loading branch information