From: Just van Rossum Date: Thu, 21 Nov 2002 10:29:57 +0000 (+0000) Subject: name kwargs kwargs X-Git-Tag: v2.3c1~3338 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3e554d7b8a90cafc677ef49dc89ccd81a146d2bb;p=thirdparty%2FPython%2Fcpython.git name kwargs kwargs --- diff --git a/Mac/Lib/plistlib.py b/Mac/Lib/plistlib.py index a4a9f1918530..9c914d208c00 100644 --- a/Mac/Lib/plistlib.py +++ b/Mac/Lib/plistlib.py @@ -172,8 +172,8 @@ class Dict: """Dict wrapper for convenient access of values through attributes.""" - def __init__(self, **args): - self.__dict__.update(args) + def __init__(self, **kwargs): + self.__dict__.update(kwargs) def __cmp__(self, other): if isinstance(other, self.__class__):