code improvement. 'as cm' not required when not used. Review comment by Georg Brandl

This commit is contained in:
Senthil Kumaran 2012-04-12 19:28:07 +08:00
parent df7ac06195
commit 80a133b91c
1 changed files with 7 additions and 7 deletions

View File

@ -619,19 +619,19 @@ class OpenerDirectorTests(unittest.TestCase):
def test_method_deprecations(self):
req = Request("http://www.example.com")
with self.assertWarns(DeprecationWarning) as cm:
with self.assertWarns(DeprecationWarning):
req.add_data("data")
with self.assertWarns(DeprecationWarning) as cm:
with self.assertWarns(DeprecationWarning):
req.has_data()
with self.assertWarns(DeprecationWarning) as cm:
with self.assertWarns(DeprecationWarning):
req.get_data()
with self.assertWarns(DeprecationWarning) as cm:
with self.assertWarns(DeprecationWarning):
req.get_host()
with self.assertWarns(DeprecationWarning) as cm:
with self.assertWarns(DeprecationWarning):
req.get_selector()
with self.assertWarns(DeprecationWarning) as cm:
with self.assertWarns(DeprecationWarning):
req.is_unverifiable()
with self.assertWarns(DeprecationWarning) as cm:
with self.assertWarns(DeprecationWarning):
req.get_origin_req_host()