1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-09 01:03:24 +00:00
This commit is contained in:
Max Shytikov
2014-04-30 02:41:21 +02:00
parent 5d1f35973d
commit 7b253ebc6f

View File

@@ -1,10 +1,9 @@
'''The container for recorded requests and responses'''
try:
from collections import Counter, OrderedDict
from collections import Counter
except ImportError:
from .compat.counter import Counter
from .compat.ordereddict import OrderedDict
from contextdecorator import ContextDecorator
@@ -31,7 +30,7 @@ class Cassette(ContextDecorator):
path,
serializer=yamlserializer,
record_mode='once',
match_on=[uri, method]):
match_on=[uri, method],
filter_headers=[],
filter_query_parameters=[],
before_record=None,