]> granicus.if.org Git - python/commitdiff
Issue #21172: isinstance check relaxed from dict to collections.Mapping.
authorVinay Sajip <vinay_sajip@yahoo.co.uk>
Thu, 10 Apr 2014 06:12:19 +0000 (07:12 +0100)
committerVinay Sajip <vinay_sajip@yahoo.co.uk>
Thu, 10 Apr 2014 06:12:19 +0000 (07:12 +0100)
Lib/logging/__init__.py
Misc/NEWS

index 181bc150d0f3a24be9ef75f072f510b7565519b6..dcfd9f690a4e981775b1a633230c81d850b346c3 100644 (file)
@@ -23,7 +23,8 @@ Copyright (C) 2001-2014 Vinay Sajip. All Rights Reserved.
 To use, simply 'import logging' and log away!
 """
 
-import sys, os, time, io, traceback, warnings, weakref
+import sys, os, time, io, traceback, warnings, weakref, collections
+
 from string import Template
 
 __all__ = ['BASIC_FORMAT', 'BufferingFormatter', 'CRITICAL', 'DEBUG', 'ERROR',
@@ -253,7 +254,13 @@ class LogRecord(object):
         # 'Value is %d' instead of 'Value is 0'.
         # For the use case of passing a dictionary, this should not be a
         # problem.
-        if args and len(args) == 1 and isinstance(args[0], dict) and args[0]:
+        # Issue #21172: a request was made to relax the isinstance check
+        # to hasattr(args[0], '__getitem__'). However, the docs on string
+        # formatting still seem to suggest a mapping object is required.
+        # Thus, while not removing the isinstance check, it does now look
+        # for collections.Mapping rather than, as before, dict.
+        if (args and len(args) == 1 and isinstance(args[0], collections.Mapping)
+            and args[0]):
             args = args[0]
         self.args = args
         self.levelname = getLevelName(level)
index d5b281e3f472b4725edf426be2485b76d3bef2f7..d4c06965e9a264ff8ea92ce49f405de395902730 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -27,6 +27,8 @@ Core and Builtins
 Library
 -------
 
+- Issue #21172: isinstance check relaxed from dict to collections.Mapping.
+
 - Issue #21155: asyncio.EventLoop.create_unix_server() now raises a ValueError
   if path and sock are specified at the same time.