Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb0304f commit 5f91cfdCopy full SHA for 5f91cfd
2 files changed
tests/simpleerr.py
@@ -5,7 +5,7 @@ def div0():
5
"foo"
6
x = 1
7
y = 0
8
- x/y
+ x / y
9
10
def sysexit(stat, mode):
11
raise SystemExit(stat, f"Mode = {mode}")
tests/test_iplib.py
@@ -46,7 +46,7 @@ def doctest_tb_plain():
46
File ...:... in bar
47
div0()
48
File ...:... in div0
49
50
ZeroDivisionError: ...
51
"""
52
@@ -75,7 +75,7 @@ def doctest_tb_context():
75
... in div0()
76
6 x = 1
77
7 y = 0
78
- ----> 8 x/y
+ ----> 8 x / y
79
<BLANKLINE>
80
ZeroDivisionError: ..."""
81
@@ -105,7 +105,7 @@ def doctest_tb_verbose():
105
106
107
108
109
110
111
0 commit comments