src/eric7/Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py

branch
eric7
changeset 10341
3fdffd9cc21d
parent 10304
ff7d3d6b952d
child 10439
21c28b0f9e41
equal deleted inserted replaced
10340:548b4c7f410e 10341:3fdffd9cc21d
504 """ 504 """
505 Private slot to display the reported messages. 505 Private slot to display the reported messages.
506 506
507 @param fn filename of the checked file 507 @param fn filename of the checked file
508 @type str 508 @type str
509 @param problems dictionary with the keys 'error', 'py_warnings' and 509 @param problems list of dictionaries with the keys 'error', 'py_warnings' and
510 'warnings' which hold a list containing details about the error or 510 'warnings' which contain a tuple with details about the syntax error or a
511 warnings (file name, line number, column, codestring (only at syntax 511 list of tuples with details about Python warnings and PyFlakes warnings.
512 errors), message) 512 Each tuple contains the file name, line number, column, code string (only
513 @type dict 513 for syntax errors), the message and an optional list with arguments for
514 the message.
515 @type list of dict
514 """ 516 """
515 if self.__finished: 517 if self.__finished:
516 return 518 return
517 519
518 # Check if it's the requested file, otherwise ignore signal if not 520 # Check if it's the requested file, otherwise ignore signal if not

eric ide

mercurial