[Python-checkins] r84103 - in python/branches/release26-maint: Mac/Modules/_scproxy.c Misc/NEWS

barry.warsaw python-checkins at python.org
Mon Aug 16 21:33:52 CEST 2010


Author: barry.warsaw
Date: Mon Aug 16 21:33:51 2010
New Revision: 84103

Log:
Issue 9568: Fix test_urllib2_localnet on OS X 10.3.


Modified:
   python/branches/release26-maint/Mac/Modules/_scproxy.c
   python/branches/release26-maint/Misc/NEWS

Modified: python/branches/release26-maint/Mac/Modules/_scproxy.c
==============================================================================
--- python/branches/release26-maint/Mac/Modules/_scproxy.c	(original)
+++ python/branches/release26-maint/Mac/Modules/_scproxy.c	Mon Aug 16 21:33:51 2010
@@ -73,7 +73,7 @@
             v = PyBool_FromLong(cfnum_to_int32(aNum));
         }
     }  else {
-        v = PyBool_FromLong(1);
+        v = PyBool_FromLong(0);
     }
 
     if (v == NULL) goto error;

Modified: python/branches/release26-maint/Misc/NEWS
==============================================================================
--- python/branches/release26-maint/Misc/NEWS	(original)
+++ python/branches/release26-maint/Misc/NEWS	Mon Aug 16 21:33:51 2010
@@ -4,8 +4,8 @@
 
 (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 @@
 Extension Modules
 -----------------
 
+- Issue #9568: Fix test_urllib2_localnet on OS X 10.3.
+
 - Issue #7567: Don't call `setupterm' twice.
 
 Tests


More information about the Python-checkins mailing list