comparison: eric6/Plugins/CheckerPlugins/CodeStyleChecker/Security/Checks/djangoXssVulnerability.py
eric6/Plugins/CheckerPlugins/CodeStyleChecker/Security/Checks/djangoXssVulnerability.py
- changeset 7614
- 646742c260bd
- parent 7613
- 382f89c11e27
- child 7619
- ef2b5af23ce7
equal
deleted
inserted
replaced
16 # |
16 # |
17 |
17 |
18 import ast |
18 import ast |
19 import sys |
19 import sys |
20 |
20 |
21 PY2 = sys.version_info < (3, 0, 0) |
21 PY2 = sys.version_info[0] == 2 |
22 |
22 |
23 |
23 |
24 def getChecks(): |
24 def getChecks(): |
25 """ |
25 """ |
26 Public method to get a dictionary with checks handled by this module. |
26 Public method to get a dictionary with checks handled by this module. |