Kaydet (Commit) 74ab3440 authored tarafından Vinay Sajip's avatar Vinay Sajip

Closes #13661: Check added for type of logger name.

üst caf0272d
......@@ -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()
......
......@@ -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):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment