summaryrefslogtreecommitdiffstats
path: root/Lib/urllib.py
diff options
context:
space:
mode:
authorRonald Oussoren <ronaldoussoren@mac.com>2009-09-20 10:54:07 (GMT)
committerRonald Oussoren <ronaldoussoren@mac.com>2009-09-20 10:54:07 (GMT)
commit809073bee109f72c939be1a5631d03ede97fbf50 (patch)
treed203c6f90794db387c809f46f6ff8e2b7da2a256 /Lib/urllib.py
parent51f0633efdc31ae29d5813881a96b0c737fca075 (diff)
downloadcpython-809073bee109f72c939be1a5631d03ede97fbf50.zip
cpython-809073bee109f72c939be1a5631d03ede97fbf50.tar.gz
cpython-809073bee109f72c939be1a5631d03ede97fbf50.tar.bz2
Followup for r74962
Diffstat (limited to 'Lib/urllib.py')
-rw-r--r--Lib/urllib.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/urllib.py b/Lib/urllib.py
index 51e8df9..8b4029d 100644
--- a/Lib/urllib.py
+++ b/Lib/urllib.py
@@ -1354,9 +1354,8 @@ if sys.platform == 'darwin':
if proxy_settings['exclude_simple']:
return True
- for value in proxy_settings.get('exceptions'):
+ for value in proxy_settings.get('exceptions', ()):
# Items in the list are strings like these: *.local, 169.254/16
- value = sc.CFArrayGetValueAtIndex(exceptions, index)
if not value: continue
m = re.match(r"(\d+(?:\.\d+)*)(/\d+)?", value)