Skip to content

Commit 597e5e6

Browse files
Start creating copilot instructions file
Co-authored-by: Pierre-Sassoulas <[email protected]>
1 parent cfb1a2d commit 597e5e6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/user_guide/checkers/features.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,8 @@ Basic checker Messages
106106
a try...finally block: the exceptions raised in the try clause will be
107107
silently swallowed instead of being re-raised.
108108
:break-in-finally (W0137): *'break' discouraged inside 'finally' clause*
109-
Emitted when the `break` keyword is found inside a finally clause. This
110-
will raise a SyntaxWarning starting in Python 3.14.
109+
Emitted when the `break` keyword is found inside a finally clause. This will
110+
raise a SyntaxWarning starting in Python 3.14.
111111
:continue-in-finally (W0136): *'continue' discouraged inside 'finally' clause*
112112
Emitted when the `continue` keyword is found inside a finally clause. This
113113
will raise a SyntaxWarning starting in Python 3.14.
@@ -193,7 +193,7 @@ Basic checker Messages
193193
:missing-parentheses-for-call-in-test (W0126): *Using a conditional statement with potentially wrong function or method call due to missing parentheses*
194194
Emitted when a conditional statement (If or ternary if) seems to wrongly call
195195
a function due to missing parentheses
196-
:comparison-of-constants (R0133): *Comparison between constants: '%s %s %s' has a constant value*
196+
:comparison-of-constants (R0133): *Comparison between constants: "%s %s %s" has a constant value*
197197
When two literals are compared with each other the result is a constant.
198198
Using the constant directly is both easier to read and more performant.
199199
Initializing 'True' and 'False' this way is not required since Python 2.3.

0 commit comments

Comments
 (0)