Files
capa/capa/perf.py
2021-11-08 15:20:11 -07:00

11 lines
240 B
Python

import collections
from typing import Dict
# this structure is unstable and may change before the next major release.
counters: Dict[str, int] = collections.Counter()
def reset():
global counters
counters = collections.Counter()