On 11.04.2012 17:06, senthil.kumaran wrote:
http://hg.python.org/cpython/rev/751c7b81f6ee changeset: 76241:751c7b81f6ee parent: 76232:8a47d2322df0 user: Senthil Kumaran<[email protected]> date: Wed Apr 11 23:05:49 2012 +0800 summary: use assertWarns instead of check_warnings - Issue14341files: Lib/test/test_urllib2.py | 16 +++++++++------- 1 files changed, 9 insertions(+), 7 deletions(-) diff --git a/Lib/test/test_urllib2.py b/Lib/test/test_urllib2.py --- a/Lib/test/test_urllib2.py +++ b/Lib/test/test_urllib2.py @@ -618,21 +618,23 @@ def test_method_deprecations(self): req = Request("http://www.example.com") - with support.check_warnings(('', DeprecationWarning)): + + with self.assertWarns(DeprecationWarning) as cm: req.add_data("data")
There's no need for adding the "as cm" if you don't need the cm object. Georg _______________________________________________ Python-Dev mailing list [email protected] http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com
