diff options
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2011-11-07 08:53:03 (GMT) |
---|---|---|
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2011-11-07 08:53:03 (GMT) |
commit | 61b787e6dd00b1e6e24a12e2d5aa6e9fd1352663 (patch) | |
tree | 981feaa3df0b277dedf87a46144ae6d149c52d13 /Lib/logging | |
parent | ebfaabd66373941e69a0b29589645857e0a6ccfc (diff) | |
download | cpython-61b787e6dd00b1e6e24a12e2d5aa6e9fd1352663.zip cpython-61b787e6dd00b1e6e24a12e2d5aa6e9fd1352663.tar.gz cpython-61b787e6dd00b1e6e24a12e2d5aa6e9fd1352663.tar.bz2 |
Closes #13661: Check added for type of logger name.
Diffstat (limited to 'Lib/logging')
-rw-r--r-- | Lib/logging/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/logging/__init__.py b/Lib/logging/__init__.py index de5392b..bea290e 100644 --- a/Lib/logging/__init__.py +++ b/Lib/logging/__init__.py @@ -1094,6 +1094,8 @@ class Manager(object): placeholder to now point to the logger. """ rv = None + if not isinstance(name, str): + raise ValueError('A logger name must be a string') _acquireLock() try: if name in self.loggerDict: |