comparison: eric7/Plugins/CheckerPlugins/CodeStyleChecker/Complexity/mccabe.py
eric7/Plugins/CheckerPlugins/CodeStyleChecker/Complexity/mccabe.py
- branch
- eric7
- changeset 8314
- e3642a6a1e71
- parent 8312
- 800c432b34c8
- child 8990
- ca8e477c590c
equal
deleted
inserted
replaced
5 """ |
5 """ |
6 |
6 |
7 import collections |
7 import collections |
8 import ast |
8 import ast |
9 |
9 |
10 __version__ = '0.6.1_eric6' |
10 __version__ = '0.6.1_eric7' |
11 |
11 |
12 |
12 |
13 class ASTVisitor(object): |
13 class ASTVisitor(object): |
14 """Performs a depth-first walk of the AST.""" |
14 """Performs a depth-first walk of the AST.""" |
15 |
15 |