summaryrefslogtreecommitdiff
path: root/testsuite/E71.py
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/E71.py')
-rw-r--r--testsuite/E71.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/testsuite/E71.py b/testsuite/E71.py
index 7464da9..e7f8869 100644
--- a/testsuite/E71.py
+++ b/testsuite/E71.py
@@ -64,6 +64,9 @@ if not X is Y:
#: E714
if not X.B is Y:
pass
+#: E714
+if not X is Y is not Z:
+ pass
#
#: Okay
@@ -79,6 +82,9 @@ if not (X in Y):
if x is not y:
pass
+if X is not Y is not Z:
+ pass
+
if TrueElement.get_element(True) == TrueElement.get_element(False):
pass