Files
typeshed/stdlib/2.7
Tim Simpson ac9ade5374 Allow use of kwargs in MutableMapping.update (#252)
Discovered while adding MyPy for code that was implementing
MutableMapping and using the update function like this:

```python
class CaseInsensitiveDict(collections.MutableMapping):
    def __init__(self, data=None, **kwargs):
        # type: (dict, **Any) -> None
        self._store = dict()  # type: dict
        if data is None:
            data = {}
        self.update(data, **kwargs)
```

This commit adds kwargs to MutableMapping to allow this.

Shout out to Tim Abbott for assisting me with this.
2016-06-05 18:10:56 -07:00
..
2016-04-17 19:02:55 -07:00
2016-04-17 19:02:55 -07:00
2016-05-04 16:54:57 -07:00
2016-04-17 19:02:55 -07:00
2016-04-17 19:02:55 -07:00
2016-05-18 15:30:24 -07:00
2016-05-04 16:54:57 -07:00
2016-03-11 16:01:30 -08:00
2016-04-17 19:02:55 -07:00
2016-05-04 16:54:57 -07:00
2016-03-15 19:49:19 +01:00
2016-01-16 16:54:47 -05:00
2016-03-06 09:25:49 +09:00
2016-04-17 19:02:55 -07:00
2016-03-17 09:19:31 -07:00
2016-04-17 19:02:55 -07:00
2016-04-08 11:59:34 -07:00
2016-04-17 19:02:55 -07:00
2016-04-17 19:02:55 -07:00
2016-04-17 19:02:55 -07:00
2016-04-08 11:49:14 -07:00
2016-05-04 16:54:57 -07:00
2016-01-16 16:54:47 -05:00
2016-04-17 19:02:55 -07:00
2016-04-17 19:02:55 -07:00
2016-04-17 19:02:55 -07:00
2016-02-25 09:41:32 +00:00
2016-06-05 16:51:26 -07:00
2016-04-17 19:02:55 -07:00
2016-05-12 14:45:23 -07:00
2016-06-02 00:27:37 -07:00
2016-05-04 16:54:57 -07:00
2015-10-19 20:02:10 -07:00
2016-01-26 20:01:34 -08:00
2016-02-26 18:03:24 -08:00
2016-05-04 16:54:57 -07:00
2016-03-06 10:03:55 +09:00