comparison: Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheck.py
Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheck.py
- branch
- BgService
- changeset 3228
- f489068e51e8
- parent 3177
- 5af61402d74d
- child 3412
- 9364dab2d472
equal
deleted
inserted
replaced
5 # pylint: disable=C0103 |
5 # pylint: disable=C0103 |
6 |
6 |
7 """ |
7 """ |
8 Module implementing the syntax check for Python 2/3. |
8 Module implementing the syntax check for Python 2/3. |
9 """ |
9 """ |
10 from __future__ import unicode_literals |
|
11 |
|
12 import re |
10 import re |
13 import sys |
11 import sys |
14 import traceback |
12 import traceback |
15 |
13 |
16 try: |
14 try: |