• Jeremy Hylton's avatar
    Fix bug reported by Tim Peters on python-dev: · 4c9dace3
    Jeremy Hylton yazdı
    Keyword arguments passed to builtin functions that don't take them are
    ignored.
    
    >>> {}.clear(x=2)
    >>>
    
    instead of
    
    >>> {}.clear(x=2)
    Traceback (most recent call last):
      File "<stdin>", line 1, in ?
    TypeError: clear() takes no keyword arguments
    4c9dace3
ceval.c 80.1 KB