diff options
Diffstat (limited to 'Lib/urllib.py')
-rw-r--r-- | Lib/urllib.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/urllib.py b/Lib/urllib.py index 2eb90f9d7f..302f707db4 100644 --- a/Lib/urllib.py +++ b/Lib/urllib.py @@ -41,6 +41,8 @@ if os.name == 'mac': from macurl2path import url2pathname, pathname2url elif os.name == 'nt': from nturl2path import url2pathname, pathname2url +elif os.name == 'riscos': + from rourl2path import url2pathname, pathname2url else: def url2pathname(pathname): return unquote(pathname) |