Plugins/CheckerPlugins/SyntaxChecker/pyflakes/messages.py

branch
6_1_x
changeset 4557
893c9f26a178
parent 4541
e8ddd9d76414
child 4632
ca310db386ed
equal deleted inserted replaced
4551:31115c8c20fc 4557:893c9f26a178
9 9
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 from __future__ import unicode_literals
15
16 14
17 class Message(object): 15 class Message(object):
18 """ 16 """
19 Class defining the base for all specific message classes. 17 Class defining the base for all specific message classes.
20 """ 18 """
307 305
308 Indicates a return statement outside of a function/method. 306 Indicates a return statement outside of a function/method.
309 """ 307 """
310 message_id = 'F15' 308 message_id = 'F15'
311 message = '\'return\' outside function' 309 message = '\'return\' outside function'
310
311 #
312 # eflag: noqa = M702

eric ide

mercurial