Corrected order of parameters to HTTPError in test_urllib2.py.
diff --git a/Lib/test/test_urllib2.py b/Lib/test/test_urllib2.py
index 307a86a..bcf5916 100644
--- a/Lib/test/test_urllib2.py
+++ b/Lib/test/test_urllib2.py
@@ -1456,7 +1456,7 @@
>>> msg = 'something bad happened'
>>> url = code = hdrs = fp = None
- >>> err = urllib.error.HTTPError(msg, url, code, hdrs, fp)
+ >>> err = urllib.error.HTTPError(url, code, msg, hdrs, fp)
>>> assert hasattr(err, 'reason')
>>> err.reason
'something bad happened'