Changes between Initial Version and Version 1 of Ticket #32452
- Timestamp:
- Feb 16, 2021, 8:31:35 AM (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #32452 – Description
initial v1 7 7 This way a developer needs to type and import less code: 8 8 9 ``` 9 {{{ 10 10 path = default_storage.save('path/to/file', b'new content') 11 ``` 11 }}} 12 12 13 ``` 13 {{{ 14 14 path = default_storage.save('path/to/file', 'new unicode string, encoded automatically with utf-8') 15 ``` 15 }}} 16 16 17 17 Would you accept a patch to `Storage.save()`?