Commit 01c42899 authored by Ronald Oussoren's avatar Ronald Oussoren

Fix for issue #9568.

parent 9af73802
...@@ -263,6 +263,8 @@ Tests ...@@ -263,6 +263,8 @@ Tests
- Issue #9323: Make test.regrtest.__file__ absolute, this was not always the - Issue #9323: Make test.regrtest.__file__ absolute, this was not always the
case when running profile or trace, for example. case when running profile or trace, for example.
- Issue #9568: Fix test_urllib2_localnet on OS X 10.3.
Build Build
----- -----
......
...@@ -80,7 +80,7 @@ get_proxy_settings(PyObject* mod __attribute__((__unused__))) ...@@ -80,7 +80,7 @@ get_proxy_settings(PyObject* mod __attribute__((__unused__)))
v = PyBool_FromLong(cfnum_to_int32(aNum)); v = PyBool_FromLong(cfnum_to_int32(aNum));
} }
} else { } else {
v = PyBool_FromLong(1); v = PyBool_FromLong(0);
} }
if (v == NULL) goto error; if (v == NULL) goto error;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment