Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 1c13dc1

Browse files
committed
tests: sphinx 8 and 9 differ about <em>
We don't care about styling, so ignore those differences.
1 parent eccf3a5 commit 1c13dc1

5 files changed

Lines changed: 219 additions & 499 deletions

File tree

tests/data/classhier_summary.html

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,9 @@ <h1>
77
class
88
ClassA
99
(
10-
<em>
11-
one
12-
</em>
10+
one
1311
,
14-
<em>
15-
two
16-
</em>
12+
two
1713
)
1814
</dt>
1915
<dd>
@@ -49,13 +45,9 @@ <h1>
4945
class
5046
ClassB
5147
(
52-
<em>
53-
three
54-
</em>
48+
three
5549
,
56-
<em>
57-
four
58-
</em>
50+
four
5951
)
6052
</dt>
6153
<dd>

tests/data/execl_summary.html

Lines changed: 30 additions & 90 deletions
Original file line numberDiff line numberDiff line change
@@ -18,145 +18,89 @@ <h1>
1818
<dt id="execl">
1919
execl
2020
(
21-
<em>
22-
path
23-
</em>
21+
path
2422
,
25-
<em>
26-
arg0
27-
</em>
23+
arg0
2824
,
29-
<em>
30-
arg1
31-
</em>
25+
arg1
3226
,
33-
<em>
34-
...
35-
</em>
27+
...
3628
)
3729
</dt>
3830
<dt id="execle">
3931
execle
4032
(
41-
<em>
42-
path
43-
</em>
33+
path
4434
,
45-
<em>
46-
arg0
47-
</em>
35+
arg0
4836
,
49-
<em>
50-
arg1
51-
</em>
37+
arg1
5238
,
53-
<em>
54-
...
55-
</em>
39+
...
5640
,
57-
<em>
58-
env
59-
</em>
41+
env
6042
)
6143
</dt>
6244
<dt id="execlp">
6345
execlp
6446
(
65-
<em>
66-
file
67-
</em>
47+
file
6848
,
69-
<em>
70-
arg0
71-
</em>
49+
arg0
7250
,
73-
<em>
74-
arg1
75-
</em>
51+
arg1
7652
,
77-
<em>
78-
...
79-
</em>
53+
...
8054
)
8155
</dt>
8256
<dt id="execlpe">
8357
execlpe
8458
(
85-
<em>
86-
file
87-
</em>
59+
file
8860
,
89-
<em>
90-
arg0
91-
</em>
61+
arg0
9262
,
93-
<em>
94-
arg1
95-
</em>
63+
arg1
9664
,
97-
<em>
98-
...
99-
</em>
65+
...
10066
,
101-
<em>
102-
env
103-
</em>
67+
env
10468
)
10569
</dt>
10670
<dt id="execv">
10771
execv
10872
(
109-
<em>
110-
path
111-
</em>
73+
path
11274
,
113-
<em>
114-
args
115-
</em>
75+
args
11676
)
11777
</dt>
11878
<dt id="execve">
11979
execve
12080
(
121-
<em>
122-
path
123-
</em>
81+
path
12482
,
125-
<em>
126-
args
127-
</em>
83+
args
12884
,
129-
<em>
130-
env
131-
</em>
85+
env
13286
)
13387
</dt>
13488
<dt id="execvp">
13589
execvp
13690
(
137-
<em>
138-
file
139-
</em>
91+
file
14092
,
141-
<em>
142-
args
143-
</em>
93+
args
14494
)
14595
</dt>
14696
<dt id="execvpe">
14797
execvpe
14898
(
149-
<em>
150-
file
151-
</em>
99+
file
152100
,
153-
<em>
154-
args
155-
</em>
101+
args
156102
,
157-
<em>
158-
env
159-
</em>
103+
env
160104
)
161105
</dt>
162106
<dd>
@@ -185,9 +129,7 @@ <h1>
185129
execl*()
186130
</code>
187131
functions. The “v” variants are good when the number of parameters is variable, with the arguments being passed in a list or tuple as the
188-
<em>
189-
args
190-
</em>
132+
args
191133
parameter. In either case, the arguments to the child process should start with the name of the command being run, but this is not enforced.
192134
</p>
193135
<p>
@@ -212,9 +154,7 @@ <h1>
212154
PATH
213155
</code>
214156
environment variable to locate the program
215-
<em>
216-
file
217-
</em>
157+
file
218158
.
219159
</p>
220160
</dd>

0 commit comments

Comments
 (0)