(self, filePath)
| 633 | except: pass |
| 634 | |
| 635 | def constructLocalFileUrl(self, filePath): |
| 636 | filePath = os.path.abspath(filePath) |
| 637 | return urllib.request.pathname2url(filePath, add_scheme=True) |
| 638 | |
| 639 | def createNewTempFile(self, data=b""): |
| 640 | """Creates a new temporary file containing the specified data, |
no test coverage detected