Inform the instance that `self.key` has been changed
(self)
| 1827 | self.newfile.close() |
| 1828 | |
| 1829 | def _mark_as_changed(self): |
| 1830 | """Inform the instance that `self.key` has been changed""" |
| 1831 | if self.instance: |
| 1832 | self.instance._mark_as_changed(self.key) |
| 1833 | |
| 1834 | |
| 1835 | class FileField(BaseField): |