diff options
Diffstat (limited to 'Lib/urllib.py')
-rw-r--r-- | Lib/urllib.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Lib/urllib.py b/Lib/urllib.py index 652be75..6cb95f3 100644 --- a/Lib/urllib.py +++ b/Lib/urllib.py @@ -42,9 +42,7 @@ __version__ = '1.17' # XXX This version is not always updated :-( MAXFTPCACHE = 10 # Trim the ftp cache beyond this size # Helper for non-unix systems -if os.name == 'mac': - from macurl2path import url2pathname, pathname2url -elif os.name == 'nt': +if os.name == 'nt': from nturl2path import url2pathname, pathname2url elif os.name == 'riscos': from rourl2path import url2pathname, pathname2url |