comparison: Plugins/CheckerPlugins/CodeStyleChecker/McCabeChecker.py
Plugins/CheckerPlugins/CodeStyleChecker/McCabeChecker.py
- branch
- 6_1_x
- changeset 4541
- e8ddd9d76414
- parent 4423
- 14f3ca3dcef6
- child 4555
- 861e1741985c
equal
deleted
inserted
replaced
4 # |
4 # |
5 |
5 |
6 """ |
6 """ |
7 Module implementing a checker for code complexity. |
7 Module implementing a checker for code complexity. |
8 """ |
8 """ |
|
9 |
|
10 from __future__ import unicode_literals |
9 |
11 |
10 import sys |
12 import sys |
11 import ast |
13 import ast |
12 |
14 |
13 from mccabe import PathGraphingAstVisitor |
15 from mccabe import PathGraphingAstVisitor |