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

add backported counter module

This commit is contained in:
Kevin McCarthy
2013-08-07 21:17:04 -10:00
parent 70c7e040fb
commit 3c614d0e9b
2 changed files with 197 additions and 1 deletions

View File

@@ -2,7 +2,10 @@
import os
import tempfile
from collections import Counter
try:
from collections import Counter
except ImportError:
from .counter import Counter
# Internal imports
from .patch import install, reset