summaryrefslogtreecommitdiff
path: root/testsuite/E72.py
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/E72.py')
-rw-r--r--testsuite/E72.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/testsuite/E72.py b/testsuite/E72.py
index d127ff7..61e17eb 100644
--- a/testsuite/E72.py
+++ b/testsuite/E72.py
@@ -4,7 +4,7 @@ if type(res) == type(42):
#: E721
if type(res) != type(""):
pass
-#: E721
+#: Okay
import types
if res == types.IntType:
@@ -47,8 +47,6 @@ if isinstance(res, str):
pass
if isinstance(res, types.MethodType):
pass
-if type(a) != type(b) or type(a) == type(ccc):
- pass
#: Okay
def func_histype(a, b, c):
pass
@@ -81,6 +79,11 @@ try:
except Exception:
pass
#: Okay
+from . import custom_types as types
+
+red = types.ColorTypeRED
+red is types.ColorType.RED
+#: Okay
from . import compute_type
if compute_type(foo) == 5: