diff options
author | Just van Rossum <just@letterror.com> | 2002-11-21 10:29:57 +0000 |
---|---|---|
committer | Just van Rossum <just@letterror.com> | 2002-11-21 10:29:57 +0000 |
commit | 3e554d7b8a90cafc677ef49dc89ccd81a146d2bb (patch) | |
tree | 0e6cbf28b6986695b70244396d57fc6aa0685458 | |
parent | ad33d723619fa25c23a5ec833a915a6b6cab090d (diff) | |
download | cpython-git-3e554d7b8a90cafc677ef49dc89ccd81a146d2bb.tar.gz |
name kwargs kwargs
-rw-r--r-- | Mac/Lib/plistlib.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mac/Lib/plistlib.py b/Mac/Lib/plistlib.py index a4a9f19185..9c914d208c 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__): |