1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-09 01:03:24 +00:00

remove compat.py in favor of backport_collections.

This commit is contained in:
Ivan Malison
2015-04-02 10:32:34 -07:00
parent e8a6a7a49f
commit df3ad5f35c
5 changed files with 2 additions and 454 deletions

View File

@@ -3,7 +3,7 @@ from six.moves.urllib.parse import urlparse, urlencode, urlunparse
try:
from collections import OrderedDict
except ImportError:
from .compat.ordereddict import OrderedDict
from backport_collections import OrderedDict
import copy