commit | 61b787e6dd00b1e6e24a12e2d5aa6e9fd1352663 | [log] [tgz] |
---|---|---|
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | Mon Nov 07 08:53:03 2011 +0000 |
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | Mon Nov 07 08:53:03 2011 +0000 |
tree | 981feaa3df0b277dedf87a46144ae6d149c52d13 | |
parent | ebfaabd66373941e69a0b29589645857e0a6ccfc [diff] [blame] |
Closes #13661: Check added for type of logger name.
diff --git a/Lib/test/test_logging.py b/Lib/test/test_logging.py index 90d293e..a022680 100644 --- a/Lib/test/test_logging.py +++ b/Lib/test/test_logging.py
@@ -293,6 +293,8 @@ ('INF.BADPARENT', 'INFO', '4'), ]) + def test_invalid_name(self): + self.assertRaises(ValueError, logging.getLogger, any) class BasicFilterTest(BaseTest):