Remove unneeded Mapping compat code

This commit is contained in:
Samuel Sutch 2014-07-10 14:27:30 -06:00
parent 467bc56e08
commit 96b2700516

View File

@ -79,12 +79,6 @@ except ImportError:
from collections import UserDict
from collections import MutableMapping as DictMixin
# Mapping is new in python 2.6
try:
from collections import Mapping
except ImportError:
Mapping = dict
# Try to import PIL in either of the two ways it can end up installed.
try:
from PIL import Image