diff options
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2011-11-07 08:49:16 (GMT) |
---|---|---|
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2011-11-07 08:49:16 (GMT) |
commit | 74ab3440bad1b97e39fb5adf992e555ba26001d1 (patch) | |
tree | 8de7fb33c65b28eb39fd6a760d1207758ed6595d | |
parent | caf0272d40f4af95d28797f1ad84b8f641368240 (diff) | |
download | cpython-74ab3440bad1b97e39fb5adf992e555ba26001d1.zip cpython-74ab3440bad1b97e39fb5adf992e555ba26001d1.tar.gz cpython-74ab3440bad1b97e39fb5adf992e555ba26001d1.tar.bz2 |
Closes #13661: Check added for type of logger name.
-rw-r--r-- | Lib/logging/__init__.py | 2 | ||||
-rw-r--r-- | Lib/test/test_logging.py | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/Lib/logging/__init__.py b/Lib/logging/__init__.py index f6af605..a0c4cb7 100644 --- a/Lib/logging/__init__.py +++ b/Lib/logging/__init__.py @@ -1007,6 +1007,8 @@ class Manager(object): placeholder to now point to the logger. """ rv = None + if not isinstance(name, basestring): + raise ValueError('A logger name must be string or Unicode') if isinstance(name, unicode): name = name.encode('utf-8') _acquireLock() diff --git a/Lib/test/test_logging.py b/Lib/test/test_logging.py index 0760a6a..b2d0a2b 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): |