[Python-checkins] r85062 - in python/branches/py3k: Misc/NEWS Modules/_scproxy.c

ronald.oussoren python-checkins at python.org
Tue Sep 28 16:38:31 CEST 2010


Author: ronald.oussoren
Date: Tue Sep 28 16:38:31 2010
New Revision: 85062

Log:
Fix for issue #9568.



Modified:
   python/branches/py3k/Misc/NEWS
   python/branches/py3k/Modules/_scproxy.c

Modified: python/branches/py3k/Misc/NEWS
==============================================================================
--- python/branches/py3k/Misc/NEWS	(original)
+++ python/branches/py3k/Misc/NEWS	Tue Sep 28 16:38:31 2010
@@ -263,6 +263,8 @@
 - Issue #9323: Make test.regrtest.__file__ absolute, this was not always the
   case when running profile or trace, for example.
 
+- Issue #9568: Fix test_urllib2_localnet on OS X 10.3.
+
 Build
 -----
 

Modified: python/branches/py3k/Modules/_scproxy.c
==============================================================================
--- python/branches/py3k/Modules/_scproxy.c	(original)
+++ python/branches/py3k/Modules/_scproxy.c	Tue Sep 28 16:38:31 2010
@@ -80,7 +80,7 @@
             v = PyBool_FromLong(cfnum_to_int32(aNum));
         }
     }  else {
-        v = PyBool_FromLong(1);
+        v = PyBool_FromLong(0);
     }
 
     if (v == NULL) goto error;


More information about the Python-checkins mailing list