OS-specific conversion from a file system path to a relative URL of the 'file' scheme; not recommended for general use.
(pathname)
| 1683 | return unquote(pathname) |
| 1684 | |
| 1685 | def pathname2url(pathname): |
| 1686 | """OS-specific conversion from a file system path to a relative URL |
| 1687 | of the 'file' scheme; not recommended for general use.""" |
| 1688 | return quote(pathname) |
| 1689 | |
| 1690 | |
| 1691 | ftpcache = {} |
no test coverage detected