Kaydet (Commit) e9355de3 authored tarafından Ronald Oussoren's avatar Ronald Oussoren

Merged revisions 85062 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r85062 | ronald.oussoren | 2010-09-28 16:38:31 +0200 (Tue, 28 Sep 2010) | 3 lines

  Fix for issue #9568.
........
üst 478b2a81
...@@ -650,6 +650,7 @@ Tests ...@@ -650,6 +650,7 @@ Tests
- Issue #8193: Fix test_zlib failure with zlib 1.2.4. - Issue #8193: Fix test_zlib failure with zlib 1.2.4.
- Issue #9568: Fix test_urllib2_localnet on OS X 10.3.
Documentation Documentation
------------- -------------
......
...@@ -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