(self, path)
| 264 | return False |
| 265 | |
| 266 | def make_uri(self, path): |
| 267 | # We represent the path using the local filesystem encoding, |
| 268 | # for portability to other applications. |
| 269 | bpath = bytes(path) |
| 270 | return 'file://' + urlquote_from_bytes(bpath) |
| 271 | |
| 272 | |
| 273 | _windows_flavour = _WindowsFlavour() |