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