mirror of
https://github.com/python/cpython.git
synced 2025-10-02 05:12:23 +00:00
Issue 9568: Fix test_urllib2_localnet on OS X 10.3.
This commit is contained in:
parent
29a66bdcb5
commit
b828e5c957
2 changed files with 5 additions and 3 deletions
|
@ -73,7 +73,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;
|
||||||
|
|
|
@ -4,8 +4,8 @@ Python News
|
||||||
|
|
||||||
(editors: check NEWS.help for information about editing NEWS using ReST.)
|
(editors: check NEWS.help for information about editing NEWS using ReST.)
|
||||||
|
|
||||||
What's New in Python 2.6.6?
|
What's New in Python 2.6.6 rc 2?
|
||||||
===========================
|
================================
|
||||||
|
|
||||||
*Release date: XXXX-XX-XX*
|
*Release date: XXXX-XX-XX*
|
||||||
|
|
||||||
|
@ -26,6 +26,8 @@ Library
|
||||||
Extension Modules
|
Extension Modules
|
||||||
-----------------
|
-----------------
|
||||||
|
|
||||||
|
- Issue #9568: Fix test_urllib2_localnet on OS X 10.3.
|
||||||
|
|
||||||
- Issue #7567: Don't call `setupterm' twice.
|
- Issue #7567: Don't call `setupterm' twice.
|
||||||
|
|
||||||
Tests
|
Tests
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue