From d74fb6b12a9a53ce09648484076c84e727561612 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 2 Mar 2001 06:43:49 +0000 Subject: RISCOS changes by dschwertberger. --- Lib/urllib.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Lib/urllib.py') 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) -- cgit v1.2.1