UtilitiesPython2/py2flakes/messages.py

changeset 2965
d133c7edd88a
parent 2302
f29e9405c851
child 3160
209a07d7e401
equal deleted inserted replaced
2964:84b65fb9e780 2965:d133c7edd88a
5 # Original (c) 2005 Divmod, Inc. See LICENSE file for details 5 # Original (c) 2005 Divmod, Inc. See LICENSE file for details
6 # 6 #
7 # This module is based on pyflakes for Python2 but was heavily hacked to 7 # This module is based on pyflakes for Python2 but was heavily hacked to
8 # work within eric5 8 # work within eric5
9 9
10 """
11 Module implementing the messages for pyflakes.
12 """
13
10 14
11 class Message(object): 15 class Message(object):
12 """ 16 """
13 Class defining the base for all specific message classes. 17 Class defining the base for all specific message classes.
14 """ 18 """
242 """ 246 """
243 Constructor 247 Constructor
244 248
245 @param filename name of the file (string) 249 @param filename name of the file (string)
246 @param lineno line number (integer) 250 @param lineno line number (integer)
247 @param name name of the unused variable (string) 251 @param names name of the unused variable (string)
248 """ 252 """
249 Message.__init__(self, filename, lineno) 253 Message.__init__(self, filename, lineno)
250 self.message_args = (names,) 254 self.message_args = (names,)
251 255
252 # 256 #

eric ide

mercurial