Plugins/CheckerPlugins/SyntaxChecker/pyflakes/messages.py

changeset 4555
861e1741985c
parent 4544
5145cf800bb0
child 4631
5c1a96925da4
equal deleted inserted replaced
4554:f3428ddd577c 4555:861e1741985c
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