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

@@ -6,7 +6,7 @@ import wrapt
try:
from collections import Counter
except ImportError:
from .compat.counter import Counter
from backport_collections import Counter
# Internal imports
from .patch import CassettePatcherBuilder