Issue 9568: Fix test_urllib2_localnet on OS X 10.3.
authorBarry Warsaw <barry@python.org>
Mon, 16 Aug 2010 19:33:51 +0000 (19:33 +0000)
committerBarry Warsaw <barry@python.org>
Mon, 16 Aug 2010 19:33:51 +0000 (19:33 +0000)
Mac/Modules/_scproxy.c
Misc/NEWS

index b393fd14cc0e3606539e28d808fb7539762c4289..4aa6665d1350cb59647237d629d7695d53c9242c 100644 (file)
@@ -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;
index aa3247d9d1b53dfbe31258265fc600100ffe5685..a1ae4af2656043999d7009cd019c0971f29f9e1c 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -4,8 +4,8 @@ Python News
 
 (editors: check NEWS.help for information about editing NEWS using ReST.)
 
-What's New in Python 2.6.6?
-===========================
+What's New in Python 2.6.6 rc 2?
+================================
 
 *Release date: XXXX-XX-XX*
 
@@ -26,6 +26,8 @@ Library
 Extension Modules
 -----------------
 
+- Issue #9568: Fix test_urllib2_localnet on OS X 10.3.
+
 - Issue #7567: Don't call `setupterm' twice.
 
 Tests