Fixed bug in fileConfig() which failed to clear logging._handlerList
diff --git a/Lib/logging/config.py b/Lib/logging/config.py
index 5adfe4d..511e659 100644
--- a/Lib/logging/config.py
+++ b/Lib/logging/config.py
@@ -79,6 +79,7 @@
     logging._acquireLock()
     try:
         logging._handlers.clear()
+        logging._handlerList = []
         # Handlers add themselves to logging._handlers
         handlers = _install_handlers(cp, formatters)
         _install_loggers(cp, handlers)