Skip to content

Commit 8928e32

Browse files
Merged revisions 85062 via svnmerge from
svn+ssh://[email protected]/python/branches/py3k ........ r85062 | ronald.oussoren | 2010-09-28 16:38:31 +0200 (Tue, 28 Sep 2010) | 3 lines Fix for issue python#9568. ........
1 parent ec2fe00 commit 8928e32

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

Mac/Modules/_scproxy.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ get_proxy_settings(PyObject* mod __attribute__((__unused__)))
7373
v = PyBool_FromLong(cfnum_to_int32(aNum));
7474
}
7575
} else {
76-
v = PyBool_FromLong(1);
76+
v = PyBool_FromLong(0);
7777
}
7878

7979
if (v == NULL) goto error;

Misc/NEWS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -405,6 +405,8 @@ Tests
405405

406406
- Issue #8605: Skip test_gdb if Python is compiled with optimizations.
407407

408+
- Issue #9568: Fix test_urllib2_localnet on OS X 10.3.
409+
408410
Documentation
409411
-------------
410412

0 commit comments

Comments
 (0)