Returns the full path of this file.
(self)
| 44 | super(ClosedTemporaryUploadedFile, self).__init__(file, name, content_type, size, charset, content_type_extra) |
| 45 | |
| 46 | def temporary_file_path(self): |
| 47 | """ |
| 48 | Returns the full path of this file. |
| 49 | """ |
| 50 | return self.file.name |
| 51 | |
| 52 | def close(self): |
| 53 | try: |
no outgoing calls
no test coverage detected