src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Security/Checks/trojanSource.py

branch
eric7
changeset 11147
dee6e106b4d3
parent 11124
f475e4e210d2
equal deleted inserted replaced
11146:59e04f7003e9 11147:dee6e106b4d3
27 list of codes 27 list of codes
28 @rtype dict 28 @rtype dict
29 """ 29 """
30 return { 30 return {
31 "File": [ 31 "File": [
32 (checkTrojanSource, ("S613",)), 32 (checkTrojanSource, ("S-613",)),
33 ], 33 ],
34 } 34 }
35 35
36 36
37 BIDI_CHARACTERS = ( 37 BIDI_CHARACTERS = (
73 except ValueError: 73 except ValueError:
74 continue 74 continue
75 reportError( 75 reportError(
76 lineno, 76 lineno,
77 colOffset, 77 colOffset,
78 "S613", 78 "S-613",
79 "H", 79 "H",
80 "M", 80 "M",
81 repr(char), 81 repr(char),
82 ) 82 )

eric ide

mercurial