src/eric7/Plugins/CheckerPlugins/SyntaxChecker/pyflakes/messages.py

branch
eric7
changeset 10164
b2fbf59d889f
parent 9653
e67609152c5e
child 10437
2f70ca07f0af
diff -r bab2f909e60b -r b2fbf59d889f src/eric7/Plugins/CheckerPlugins/SyntaxChecker/pyflakes/messages.py
--- a/src/eric7/Plugins/CheckerPlugins/SyntaxChecker/pyflakes/messages.py	Mon Aug 28 16:28:57 2023 +0200
+++ b/src/eric7/Plugins/CheckerPlugins/SyntaxChecker/pyflakes/messages.py	Mon Aug 28 17:35:11 2023 +0200
@@ -434,8 +434,6 @@
     message = "'yield' outside function"
 
 
-# For whatever reason, Python gives different error messages for these two. We
-# match the Python error message exactly.
 class ContinueOutsideLoop(Message):
     """
     Class defining the "Continue outside loop" message.
@@ -458,17 +456,6 @@
     message = "'break' outside loop"
 
 
-class ContinueInFinally(Message):
-    """
-    Class defining the "Continue in finally block" message.
-
-    Indicates a continue statement in a finally block in a while or for loop.
-    """
-
-    message_id = "F24"
-    message = "'continue' not supported inside 'finally' clause"
-
-
 class DefaultExceptNotLast(Message):
     """
     Class defining the "Default except not being the last" message.

eric ide

mercurial