comparison: eric6/Plugins/CheckerPlugins/SyntaxChecker/pyflakes/messages.py
eric6/Plugins/CheckerPlugins/SyntaxChecker/pyflakes/messages.py
- branch
- maintenance
- changeset 8273
- 698ae46f40a4
- parent 8043
- 0acf98cd089a
- parent 8207
- d359172d11be
equal
deleted
inserted
replaced
10 """ |
10 """ |
11 Module providing the class Message and its subclasses. |
11 Module providing the class Message and its subclasses. |
12 """ |
12 """ |
13 |
13 |
14 |
14 |
15 class Message(object): |
15 class Message(): |
16 """ |
16 """ |
17 Class defining the base for all specific message classes. |
17 Class defining the base for all specific message classes. |
18 """ |
18 """ |
19 message_id = 'F00' |
19 message_id = 'F00' |
20 message = '' |
20 message = '' |