Plugins/CheckerPlugins/SyntaxChecker/pyflakes/messages.py

changeset 6766
c722fcfb5f62
parent 6742
7cb30f7f94f6
equal deleted inserted replaced
6765:468dfb7b2107 6766:c722fcfb5f62
525 """ 525 """
526 message_id = 'F31' 526 message_id = 'F31'
527 message = 'syntax error in type comment %r' 527 message = 'syntax error in type comment %r'
528 528
529 def __init__(self, filename, loc, annotation): 529 def __init__(self, filename, loc, annotation):
530 """
531 Constructor
532
533 @param filename name of the file (string)
534 @param loc location of the issue
535 @param annotation erroneous forward annotation (string)
536 """
530 Message.__init__(self, filename, loc) 537 Message.__init__(self, filename, loc)
531 self.message_args = (annotation,) 538 self.message_args = (annotation,)
532 539
533 540
534 class RaiseNotImplemented(Message): 541 class RaiseNotImplemented(Message):

eric ide

mercurial