pyswagger
pyswagger copied to clipboard
fix MutableMapping import for Python 3.3+
In Python 3.3 collections.MutableMapping was moved to collections.abc.MutableMapping, which breaks your imports. This does the import in a try/except block in a new compat.py file to avoid the bug.
Please merge!