We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b60b6f commit 2bc8543Copy full SHA for 2bc8543
1 file changed
tests/snippets/exit.py
@@ -9,9 +9,6 @@
9
with assert_raises(SystemExit):
10
exit(1)
11
12
-with assert_raises(NameError):
13
- exit(AB)
14
-
15
16
exit("AB")
17
@@ -24,9 +21,6 @@
24
21
25
22
quit(1)
26
23
27
28
- quit(AB)
29
30
31
quit("AB")
32
@@ -41,8 +35,5 @@
41
35
42
36
sys.exit(1)
43
37
44
45
- sys.exit(AB)
46
47
38
48
39
sys.exit("AB")
0 commit comments