We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5f42c9 commit b359cf2Copy full SHA for b359cf2
2 files changed
tests/misc/non_compliant.py
@@ -70,3 +70,20 @@
70
except NotImplementedError:
71
print('NotImplementedError')
72
73
+# tuple load with step!=1 not implemented
74
+try:
75
+ ()[2:3:4]
76
+except NotImplementedError:
77
+ print('NotImplementedError')
78
+
79
+# list store with step!=1 not implemented
80
81
+ [][2:3:4] = []
82
83
84
85
+# list delete with step!=1 not implemented
86
87
+ del [][2:3:4]
88
89
tests/misc/non_compliant.py.exp
@@ -9,3 +9,6 @@ NotImplementedError
9
NotImplementedError
10
11
12
+NotImplementedError
13
14
0 commit comments