Kaydet (Commit) 3e554d7b authored tarafından Just van Rossum's avatar Just van Rossum

name kwargs kwargs

üst ad33d723
......@@ -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__):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment