mirror of https://github.com/python/cpython
Fix for issue #9568.
This commit is contained in:
parent
9af738022e
commit
01c428999a
|
@ -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
|
||||
-----
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue