From 1dda2b29d5be98f39be33ebe7a09a6a589fb35a8 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Wed, 10 Jun 2015 00:32:05 +0300 Subject: [PATCH] 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. --- collections/collections/__init__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/collections/collections/__init__.py b/collections/collections/__init__.py index 2bcb95d9..faf61a81 100644 --- a/collections/collections/__init__.py +++ b/collections/collections/__init__.py @@ -11,3 +11,6 @@ try: from .deque import deque except ImportError: pass + +class MutableMapping: + pass