mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 20:12:57 +01:00
Merge #20346: script: modify security-check.py to use "==" instead of "is" for literal comparison
b6121edf70a8d50fd16ddbba0c3168e5e49bfc2e swapped "is" for "==" in literal comparison (Tyler Chambers) Pull request description: In Python 3.8+ literal comparisons using "is" instead of "==" produce a SyntaxWarning [source](https://docs.python.org/3.8/whatsnew/3.8.html#changes-in-python-behavior). I checked the entire devtools directory, this seems to be the only occurrence. This is a small fix, but removes the SyntaxWarning. Fixes: #20338 ACKs for top commit: hebasto: re-ACK b6121edf70a8d50fd16ddbba0c3168e5e49bfc2e, only squashed since my [previous](https://github.com/bitcoin/bitcoin/pull/20346#pullrequestreview-525934568) review. practicalswift: re-ACK b6121edf70a8d50fd16ddbba0c3168e5e49bfc2e: patch still looks correct theStack: utACK b6121edf70a8d50fd16ddbba0c3168e5e49bfc2e Tree-SHA512: 82a43495d6552fbaa3b02b58f0930b049d27aa937fe44b47714e3c059f844cc494de20674557371cbccf24fb8873ecb7376fb965ae326847eed2b855ed2d59c6
This commit is contained in:
parent
822a818331
commit
55d78e8b07
@ -55,6 +55,7 @@ enabled=(
|
|||||||
F621 # too many expressions in an assignment with star-unpacking
|
F621 # too many expressions in an assignment with star-unpacking
|
||||||
F622 # two or more starred expressions in an assignment (a, *b, *c = d)
|
F622 # two or more starred expressions in an assignment (a, *b, *c = d)
|
||||||
F631 # assertion test is a tuple, which are always True
|
F631 # assertion test is a tuple, which are always True
|
||||||
|
F632 # use ==/!= to compare str, bytes, and int literals
|
||||||
F701 # a break statement outside of a while or for loop
|
F701 # a break statement outside of a while or for loop
|
||||||
F702 # a continue statement outside of a while or for loop
|
F702 # a continue statement outside of a while or for loop
|
||||||
F703 # a continue statement in a finally block in a loop
|
F703 # a continue statement in a finally block in a loop
|
||||||
|
Loading…
Reference in New Issue
Block a user