diff options
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2011-11-07 08:49:16 +0000 |
---|---|---|
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2011-11-07 08:49:16 +0000 |
commit | 74ab3440bad1b97e39fb5adf992e555ba26001d1 (patch) | |
tree | 8de7fb33c65b28eb39fd6a760d1207758ed6595d /Lib/test/test_logging.py | |
parent | caf0272d40f4af95d28797f1ad84b8f641368240 (diff) | |
download | cpython-git-74ab3440bad1b97e39fb5adf992e555ba26001d1.tar.gz |
Closes #13661: Check added for type of logger name.
Diffstat (limited to 'Lib/test/test_logging.py')
-rw-r--r-- | Lib/test/test_logging.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_logging.py b/Lib/test/test_logging.py index 0760a6a07b..b2d0a2bda6 100644 --- a/Lib/test/test_logging.py +++ b/Lib/test/test_logging.py @@ -272,6 +272,8 @@ class BuiltinLevelsTest(BaseTest): ('INF.BADPARENT', 'INFO', '4'), ]) + def test_invalid_name(self): + self.assertRaises(ValueError, logging.getLogger, any) class BasicFilterTest(BaseTest): |