diff options
author | Just van Rossum <just@letterror.com> | 2002-11-21 10:29:57 (GMT) |
---|---|---|
committer | Just van Rossum <just@letterror.com> | 2002-11-21 10:29:57 (GMT) |
commit | 3e554d7b8a90cafc677ef49dc89ccd81a146d2bb (patch) | |
tree | 0e6cbf28b6986695b70244396d57fc6aa0685458 /Mac | |
parent | ad33d723619fa25c23a5ec833a915a6b6cab090d (diff) | |
download | cpython-3e554d7b8a90cafc677ef49dc89ccd81a146d2bb.zip cpython-3e554d7b8a90cafc677ef49dc89ccd81a146d2bb.tar.gz cpython-3e554d7b8a90cafc677ef49dc89ccd81a146d2bb.tar.bz2 |
name kwargs kwargs
Diffstat (limited to 'Mac')
-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 a4a9f19..9c914d2 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__): |