[Mlir-commits] [mlir] fix(mlir/**.py): fix comparison to None (PR #94019)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Fri May 31 12:28:38 PDT 2024
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-mlir
Author: Eisuke Kawashima (e-kwsm)
<details>
<summary>Changes</summary>
from PEP8 (https://peps.python.org/pep-0008/#programming-recommendations):
> Comparisons to singletons like None should always be done with is or is not, never the equality operators.
---
Full diff: https://github.com/llvm/llvm-project/pull/94019.diff
3 Files Affected:
- (modified) mlir/test/python/ir/affine_expr.py (+1-1)
- (modified) mlir/test/python/ir/attributes.py (+4-4)
- (modified) mlir/test/python/ir/builtin_types.py (+4-4)
``````````diff
diff --git a/mlir/test/python/ir/affine_expr.py b/mlir/test/python/ir/affine_expr.py
index 63564303e8315..c7861c1acfe12 100644
--- a/mlir/test/python/ir/affine_expr.py
+++ b/mlir/test/python/ir/affine_expr.py
@@ -42,7 +42,7 @@ def testAffineExprEq():
# CHECK: False
print(a1 == a3)
# CHECK: False
- print(a1 == None)
+ print(a1 is None)
# CHECK: False
print(a1 == "foo")
diff --git a/mlir/test/python/ir/attributes.py b/mlir/test/python/ir/attributes.py
index dbd6bad05e01d..0f2c8e7b7252a 100644
--- a/mlir/test/python/ir/attributes.py
+++ b/mlir/test/python/ir/attributes.py
@@ -56,8 +56,8 @@ def testAttrEq():
print("a1 == a2:", a1 == a2)
# CHECK: a1 == a3: True
print("a1 == a3:", a1 == a3)
- # CHECK: a1 == None: False
- print("a1 == None:", a1 == None)
+ # CHECK: a1 is None: False
+ print("a1 is None:", a1 is None)
# CHECK-LABEL: TEST: testAttrHash
@@ -109,9 +109,9 @@ def testAttrEqDoesNotRaise():
# CHECK: False
print(a1 == not_an_attr)
# CHECK: False
- print(a1 == None)
+ print(a1 is None)
# CHECK: True
- print(a1 != None)
+ print(a1 is not None)
# CHECK-LABEL: TEST: testAttrCapsule
diff --git a/mlir/test/python/ir/builtin_types.py b/mlir/test/python/ir/builtin_types.py
index 4eea1a9c372ef..cfe377c703717 100644
--- a/mlir/test/python/ir/builtin_types.py
+++ b/mlir/test/python/ir/builtin_types.py
@@ -57,8 +57,8 @@ def testTypeEq():
print("t1 == t2:", t1 == t2)
# CHECK: t1 == t3: True
print("t1 == t3:", t1 == t3)
- # CHECK: t1 == None: False
- print("t1 == None:", t1 == None)
+ # CHECK: t1 is None: False
+ print("t1 is None:", t1 is None)
# CHECK-LABEL: TEST: testTypeHash
@@ -143,9 +143,9 @@ def testTypeEqDoesNotRaise():
# CHECK: False
print(t1 == not_a_type)
# CHECK: False
- print(t1 == None)
+ print(t1 is None)
# CHECK: True
- print(t1 != None)
+ print(t1 is not None)
# CHECK-LABEL: TEST: testTypeCapsule
``````````
</details>
https://github.com/llvm/llvm-project/pull/94019
More information about the Mlir-commits
mailing list