commit | 737fb89dd15e4db6ef30d25963e774ae09cc49dc | [log] [tgz] |
---|---|---|
author | Andrew Svetlov <andrew.svetlov@gmail.com> | Tue Dec 18 21:14:22 2012 +0200 |
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | Tue Dec 18 21:14:22 2012 +0200 |
tree | 422450a087195dbb9e33c7d73d96fd2f1a5f1fcd | |
parent | 4001e96179543cf056613e65dcedc63716c6bc21 [diff] [blame] |
Issue #16714: use 'raise' exceptions, don't 'throw'. Patch by Serhiy Storchaka.
diff --git a/Lib/test/test_time.py b/Lib/test/test_time.py index ce57d87..d3c49bb 100644 --- a/Lib/test/test_time.py +++ b/Lib/test/test_time.py
@@ -106,7 +106,7 @@ def test_strptime(self): # Should be able to go round-trip from strftime to strptime without - # throwing an exception. + # raising an exception. tt = time.gmtime(self.t) for directive in ('a', 'A', 'b', 'B', 'c', 'd', 'H', 'I', 'j', 'm', 'M', 'p', 'S',