Files
krvim/bundle/pycomplexity/autoload/tests/utils.py
T
Kenneth Reitz a6e8ac9d6e Update.
2010-11-07 06:55:07 -05:00

9 lines
150 B
Python

from textwrap import dedent
from complexity import compute_code_complexity
def complexity(code):
return compute_code_complexity(dedent(code))