diff options
author | Ronald Oussoren <ronaldoussoren@mac.com> | 2010-09-28 14:38:31 +0000 |
---|---|---|
committer | Ronald Oussoren <ronaldoussoren@mac.com> | 2010-09-28 14:38:31 +0000 |
commit | 01c428999a7051f197ef1d56b70c385e0ea95cbd (patch) | |
tree | 387dd9244cae9a9900e879958860bd2614436819 | |
parent | 9af738022ee36bd577f1decd181e8a8911691a7b (diff) | |
download | cpython-git-01c428999a7051f197ef1d56b70c385e0ea95cbd.tar.gz |
Fix for issue #9568.
-rw-r--r-- | Misc/NEWS | 2 | ||||
-rw-r--r-- | Modules/_scproxy.c | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -263,6 +263,8 @@ Tests - 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 ----- diff --git a/Modules/_scproxy.c b/Modules/_scproxy.c index af11ba7472..3b2a38ea32 100644 --- a/Modules/_scproxy.c +++ b/Modules/_scproxy.c @@ -80,7 +80,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; |