src/reportlab/lib/utils.py
changeset 3328 4d7f836cd947
parent 3327 512eb20b0c3d
child 3349 b67514b01536
--- a/src/reportlab/lib/utils.py	Mon Feb 08 22:28:42 2010 +0000
+++ b/src/reportlab/lib/utils.py	Tue Feb 09 11:23:58 2010 +0000
@@ -46,9 +46,9 @@
     from UserDict import UserDict as _UserDict
 
 class CIDict(_UserDict):
-    def __init__(self,*a,**kw):
-        map(self.update, a)
-        self.update(kw)
+    def __init__(self,*args,**kwds):
+        for a in args: self.update(a)
+        self.update(kwds)
 
     def update(self,D):
         for k,v in D.items(): self[k] = v