[Python-checkins] r81024 - python/branches/py3k/Lib/urllib/request.py (original) (raw)
mark.dickinson python-checkins at python.org
Sun May 9 14:16:29 CEST 2010
- Previous message: [Python-checkins] r81023 - in python/branches/py3k: Lib/unittest/test/test_suite.py
- Next message: [Python-checkins] r81025 - in python/branches/release31-maint: Lib/urllib/request.py
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Author: mark.dickinson Date: Sun May 9 14:16:29 2010 New Revision: 81024
Log: Fix test_urllib2 failure on OS X.
Modified: python/branches/py3k/Lib/urllib/request.py
Modified: python/branches/py3k/Lib/urllib/request.py
--- python/branches/py3k/Lib/urllib/request.py (original) +++ python/branches/py3k/Lib/urllib/request.py Sun May 9 14:16:29 2010 @@ -2159,7 +2159,7 @@
def ip2num(ipAddr):
parts = ipAddr.split('.')
parts = map(int, parts)
parts = list(map(int, parts)) if len(parts) != 4: parts = (parts + [0, 0, 0, 0])[:4] return (parts[0] << 24) | (parts[1] << 16) | (parts[2] << 8) | parts[3]
- Previous message: [Python-checkins] r81023 - in python/branches/py3k: Lib/unittest/test/test_suite.py
- Next message: [Python-checkins] r81025 - in python/branches/release31-maint: Lib/urllib/request.py
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]