This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Unsupported provider

classification
Title: Fixes failing urllib2 proxy tests on OSX
Type: behavior Stage: resolved
Components: macOS Versions: Python 3.1, Python 3.2, Python 3.3, Python 2.7, Python 2.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: ronaldoussoren Nosy List: orsenthil, python-dev, ronaldoussoren, rswilson
Priority: normal Keywords: patch

Created on 2011-03-14 16:07 by rswilson, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
proxy_bypass_osx.diff rswilson, 2011-03-14 16:07 review
proxy_bypass_osx_w_tests.diff rswilson, 2011-03-14 20:08 review
Messages (5)
msg130841 - (view) Author: Scott Wilson (rswilson) * Date: 2011-03-14 16:07
Fixes a bug in the os x proxy bypass code for fully qualified IP addresses in the proxy exception list. 

Tests that fail on os x without this patch:

test_urllib2.HandlerTests.test_proxy_https
test_urllib2.HandlerTests.test_proxy_https_proxy_authorization

Will create a separate issue to improve test coverage in this area.
msg130888 - (view) Author: Scott Wilson (rswilson) * Date: 2011-03-14 20:08
This patch adds test coverage to the osx proxy bypass code and includes the previous one line patch.

Also adds a test for the proxy_no=* case.
msg130918 - (view) Author: Ronald Oussoren (ronaldoussoren) * (Python committer) Date: 2011-03-14 22:07
Patch looks great, I'll commit shortly.

Thanks for the patch.
msg130921 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2011-03-14 22:54
New changeset 682903e066db by Ronald Oussoren in branch '3.1':
Issue #11500: Fixed a bug in the os x proxy bypass code for fully qualified IP addresses in the proxy exception list
http://hg.python.org/cpython/rev/682903e066db

New changeset aafb0fed1811 by Ronald Oussoren in branch '3.2':
Issue #11500: Fixed a bug in the os x proxy bypass code for fully qualified IP addresses in the proxy exception list.
http://hg.python.org/cpython/rev/aafb0fed1811

New changeset 166dcfc2c0fa by Ronald Oussoren in branch 'default':
Issue #11500: Fixed a bug in the os x proxy bypass code for fully qualified IP addresses in the proxy exception list.
http://hg.python.org/cpython/rev/166dcfc2c0fa

New changeset 8f0756010720 by Ronald Oussoren in branch '2.7':
Issue #11500: Fixed a bug in the os x proxy bypass code for fully qualified
http://hg.python.org/cpython/rev/8f0756010720
msg130922 - (view) Author: Ronald Oussoren (ronaldoussoren) * (Python committer) Date: 2011-03-14 22:56
The patch got merged.
History
Date User Action Args
2022-04-11 14:57:14adminsetgithub: 55709
2011-03-14 22:56:10ronaldoussorensetstatus: open -> closed
nosy: ronaldoussoren, orsenthil, python-dev, rswilson
messages: + msg130922

resolution: fixed
stage: resolved
2011-03-14 22:54:26python-devsetnosy: + python-dev
messages: + msg130921
2011-03-14 22:07:56ronaldoussorensetnosy: + ronaldoussoren
messages: + msg130918
2011-03-14 20:08:53rswilsonsetfiles: + proxy_bypass_osx_w_tests.diff

messages: + msg130888
2011-03-14 16:38:50rswilsonsetnosy: + orsenthil, - ronaldoussoren
type: behavior
2011-03-14 16:07:17rswilsoncreate