Make test_logging pass.
diff --git a/Lib/logging/config.py b/Lib/logging/config.py
index 41d577f..2888e5e 100644
--- a/Lib/logging/config.py
+++ b/Lib/logging/config.py
@@ -202,7 +202,7 @@
     #what's left in existing is the set of loggers
     #which were in the previous configuration but
     #which are not in the new configuration.
-    existing = root.manager.loggerDict.keys()
+    existing = list(root.manager.loggerDict.keys())
     #now set up the new ones...
     for log in llist:
         sectname = "logger_%s" % log