summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Mac/Modules/_scproxy.c2
-rw-r--r--Misc/NEWS2
2 files changed, 3 insertions, 1 deletions
diff --git a/Mac/Modules/_scproxy.c b/Mac/Modules/_scproxy.c
index b393fd1..4aa6665 100644
--- a/Mac/Modules/_scproxy.c
+++ b/Mac/Modules/_scproxy.c
@@ -73,7 +73,7 @@ get_proxy_settings(PyObject* mod __attribute__((__unused__)))
v = PyBool_FromLong(cfnum_to_int32(aNum));
}
} else {
- v = PyBool_FromLong(1);
+ v = PyBool_FromLong(0);
}
if (v == NULL) goto error;
diff --git a/Misc/NEWS b/Misc/NEWS
index 083fc53..d30b05b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -405,6 +405,8 @@ Tests
- Issue #8605: Skip test_gdb if Python is compiled with optimizations.
+- Issue #9568: Fix test_urllib2_localnet on OS X 10.3.
+
Documentation
-------------