194
194
local_path_to_url = _posix_local_path_to_url
195
195
local_path_from_url = _posix_local_path_from_url
196
196
MIN_ABS_FILEURL_LENGTH = len('file:///')
198
199
if sys.platform == 'win32':
199
200
local_path_to_url = _win32_local_path_to_url
200
201
local_path_from_url = _win32_local_path_from_url
205
206
_url_scheme_re = re.compile(r'^(?P<scheme>[^:/]{2,})://(?P<path>.*)$')