collections: Add dummy MutableMapping ABC.

Actually should be in collections.abc since Python 3.3, but for compatibility
still present directly in collections, where cross-version software digs for
it.
pull/29/merge
Paul Sokolovsky 2015-06-10 00:32:05 +03:00
rodzic 4f5b52205c
commit 1dda2b29d5
1 zmienionych plików z 3 dodań i 0 usunięć

Wyświetl plik

@ -11,3 +11,6 @@ try:
from .deque import deque
except ImportError:
pass
class MutableMapping:
pass