1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-08 16:53:23 +00:00

hold counts in a Counter

This commit is contained in:
Kevin McCarthy
2013-08-07 19:35:04 -10:00
parent 87d27a7199
commit 9ac03c889a
2 changed files with 14 additions and 7 deletions

View File

@@ -16,3 +16,6 @@ class Request(object):
def __eq__(self, other):
return hash(self) == hash(other)
def __str__(self):
return "<Request ({0}) {1}>".format(self.method, self.body)