summaryrefslogtreecommitdiffstats
path: root/Lib/logging
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/logging')
-rw-r--r--Lib/logging/__init__.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/logging/__init__.py b/Lib/logging/__init__.py
index 46e86cb..527fc5c 100644
--- a/Lib/logging/__init__.py
+++ b/Lib/logging/__init__.py
@@ -916,8 +916,7 @@ def getHandlerNames():
"""
Return all known handler names as an immutable set.
"""
- result = set(_handlers.keys())
- return frozenset(result)
+ return frozenset(_handlers)
class Handler(Filterer):