From b352b40c7adb78f80e7441bf22e55d9c59319038 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Mon, 14 Oct 2019 09:39:48 -0400 Subject: Update html gold files --- tests/gold/html/a/a_py.html | 12 +++--- tests/gold/html/a/index.html | 2 +- tests/gold/html/b_branch/b_py.html | 56 +++++++++++++-------------- tests/gold/html/b_branch/index.html | 2 +- tests/gold/html/bom/2/bom_py.html | 24 ++++++------ tests/gold/html/bom/bom_py.html | 24 ++++++------ tests/gold/html/bom/index.html | 2 +- tests/gold/html/isolatin1/index.html | 2 +- tests/gold/html/isolatin1/isolatin1_py.html | 12 +++--- tests/gold/html/omit_1/index.html | 2 +- tests/gold/html/omit_1/m1_py.html | 6 +-- tests/gold/html/omit_1/m2_py.html | 6 +-- tests/gold/html/omit_1/m3_py.html | 6 +-- tests/gold/html/omit_1/main_py.html | 22 +++++------ tests/gold/html/omit_2/index.html | 2 +- tests/gold/html/omit_2/m2_py.html | 6 +-- tests/gold/html/omit_2/m3_py.html | 6 +-- tests/gold/html/omit_2/main_py.html | 22 +++++------ tests/gold/html/omit_3/index.html | 2 +- tests/gold/html/omit_3/m3_py.html | 6 +-- tests/gold/html/omit_3/main_py.html | 22 +++++------ tests/gold/html/omit_4/index.html | 2 +- tests/gold/html/omit_4/m1_py.html | 6 +-- tests/gold/html/omit_4/m3_py.html | 6 +-- tests/gold/html/omit_4/main_py.html | 22 +++++------ tests/gold/html/omit_5/index.html | 2 +- tests/gold/html/omit_5/m1_py.html | 6 +-- tests/gold/html/omit_5/main_py.html | 22 +++++------ tests/gold/html/other/blah_blah_other_py.html | 14 +++---- tests/gold/html/other/here_py.html | 14 +++---- tests/gold/html/other/index.html | 4 +- tests/gold/html/partial/index.html | 2 +- tests/gold/html/partial/partial_py.html | 36 ++++++++--------- tests/gold/html/styled/a_py.html | 12 +++--- tests/gold/html/styled/index.html | 2 +- tests/gold/html/unicode/index.html | 2 +- tests/gold/html/unicode/unicode_py.html | 12 +++--- 37 files changed, 204 insertions(+), 204 deletions(-) (limited to 'tests/gold/html') diff --git a/tests/gold/html/a/a_py.html b/tests/gold/html/a/a_py.html index be429883..2ce52414 100644 --- a/tests/gold/html/a/a_py.html +++ b/tests/gold/html/a/a_py.html @@ -51,17 +51,17 @@
-

1if 1 < 2: 

-

2 # Needed a < to look at HTML entities. 

-

3 a = 3 

-

4else: 

-

5 a = 4 

+

1if 1 < 2: 

+

2 # Needed a < to look at HTML entities. 

+

3 a = 3 

+

4else: 

+

5 a = 4 

diff --git a/tests/gold/html/a/index.html b/tests/gold/html/a/index.html index d5627078..e1c585fc 100644 --- a/tests/gold/html/a/index.html +++ b/tests/gold/html/a/index.html @@ -76,7 +76,7 @@

coverage.py v5.0a9, - created at 2019-10-13 11:13 + created at 2019-10-14 09:27

diff --git a/tests/gold/html/b_branch/b_py.html b/tests/gold/html/b_branch/b_py.html index 665befd9..ce8bb875 100644 --- a/tests/gold/html/b_branch/b_py.html +++ b/tests/gold/html/b_branch/b_py.html @@ -52,39 +52,39 @@
-

1def one(x): 

-

2 # This will be a branch that misses the else. 

-

3 if x < 2: 3 ↛ 6line 3 didn't jump to line 6, because the condition on line 3 was never false

-

4 a = 3 

-

5 else: 

-

6 a = 4 

-

7 

-

8one(1) 

-

9 

-

10def two(x): 

-

11 # A missed else that branches to "exit" 

-

12 if x: 12 ↛ exitline 12 didn't return from function 'two', because the condition on line 12 was never false

-

13 a = 5 

-

14 

-

15two(1) 

-

16 

-

17def three(): 

-

18 try: 

-

19 # This if has two branches, *neither* one taken. 

-

20 if name_error_this_variable_doesnt_exist: 20 ↛ 21,   20 ↛ 232 missed branches: 1) line 20 didn't jump to line 21, because the condition on line 20 was never true, 2) line 20 didn't jump to line 23, because the condition on line 20 was never false

-

21 a = 1 

-

22 else: 

-

23 a = 2 

-

24 except: 

-

25 pass 

-

26 

-

27three() 

+

1def one(x): 

+

2 # This will be a branch that misses the else. 

+

3 if x < 2: 3 ↛ 6line 3 didn't jump to line 6, because the condition on line 3 was never false

+

4 a = 3 

+

5 else: 

+

6 a = 4 

+

7 

+

8one(1) 

+

9 

+

10def two(x): 

+

11 # A missed else that branches to "exit" 

+

12 if x: 12 ↛ exitline 12 didn't return from function 'two', because the condition on line 12 was never false

+

13 a = 5 

+

14 

+

15two(1) 

+

16 

+

17def three(): 

+

18 try: 

+

19 # This if has two branches, *neither* one taken. 

+

20 if name_error_this_variable_doesnt_exist: 20 ↛ 21,   20 ↛ 232 missed branches: 1) line 20 didn't jump to line 21, because the condition on line 20 was never true, 2) line 20 didn't jump to line 23, because the condition on line 20 was never false

+

21 a = 1 

+

22 else: 

+

23 a = 2 

+

24 except: 

+

25 pass 

+

26 

+

27three() 

diff --git a/tests/gold/html/b_branch/index.html b/tests/gold/html/b_branch/index.html index a4827b28..8b68b26e 100644 --- a/tests/gold/html/b_branch/index.html +++ b/tests/gold/html/b_branch/index.html @@ -84,7 +84,7 @@

coverage.py v5.0a9, - created at 2019-10-13 11:13 + created at 2019-10-14 09:27

diff --git a/tests/gold/html/bom/2/bom_py.html b/tests/gold/html/bom/2/bom_py.html index bd4afd06..3d1c98fb 100644 --- a/tests/gold/html/bom/2/bom_py.html +++ b/tests/gold/html/bom/2/bom_py.html @@ -51,23 +51,23 @@
-

1# A Python source file in utf-8, with BOM. 

-

2math = "3×4 = 12, ÷2 = 6±0" 

-

3 

-

4import sys 

-

5 

-

6if sys.version_info >= (3, 0): 

-

7 assert len(math) == 18 

-

8 assert len(math.encode('utf-8')) == 21 

-

9else: 

-

10 assert len(math) == 21 

-

11 assert len(math.decode('utf-8')) == 18 

+

1# A Python source file in utf-8, with BOM. 

+

2math = "3×4 = 12, ÷2 = 6±0" 

+

3 

+

4import sys 

+

5 

+

6if sys.version_info >= (3, 0): 

+

7 assert len(math) == 18 

+

8 assert len(math.encode('utf-8')) == 21 

+

9else: 

+

10 assert len(math) == 21 

+

11 assert len(math.decode('utf-8')) == 18 

diff --git a/tests/gold/html/bom/bom_py.html b/tests/gold/html/bom/bom_py.html index 0ef14599..635f8b51 100644 --- a/tests/gold/html/bom/bom_py.html +++ b/tests/gold/html/bom/bom_py.html @@ -51,23 +51,23 @@
-

1# A Python source file in utf-8, with BOM. 

-

2math = "3×4 = 12, ÷2 = 6±0" 

-

3 

-

4import sys 

-

5 

-

6if sys.version_info >= (3, 0): 

-

7 assert len(math) == 18 

-

8 assert len(math.encode('utf-8')) == 21 

-

9else: 

-

10 assert len(math) == 21 

-

11 assert len(math.decode('utf-8')) == 18 

+

1# A Python source file in utf-8, with BOM. 

+

2math = "3×4 = 12, ÷2 = 6±0" 

+

3 

+

4import sys 

+

5 

+

6if sys.version_info >= (3, 0): 

+

7 assert len(math) == 18 

+

8 assert len(math.encode('utf-8')) == 21 

+

9else: 

+

10 assert len(math) == 21 

+

11 assert len(math.decode('utf-8')) == 18 

diff --git a/tests/gold/html/bom/index.html b/tests/gold/html/bom/index.html index 6b87a5bc..b08e9c1c 100644 --- a/tests/gold/html/bom/index.html +++ b/tests/gold/html/bom/index.html @@ -76,7 +76,7 @@

coverage.py v5.0a9, - created at 2019-10-13 11:13 + created at 2019-10-14 09:27

diff --git a/tests/gold/html/isolatin1/index.html b/tests/gold/html/isolatin1/index.html index f0d1fcc9..7e33e754 100644 --- a/tests/gold/html/isolatin1/index.html +++ b/tests/gold/html/isolatin1/index.html @@ -76,7 +76,7 @@

coverage.py v5.0a9, - created at 2019-10-13 11:13 + created at 2019-10-14 09:27

diff --git a/tests/gold/html/isolatin1/isolatin1_py.html b/tests/gold/html/isolatin1/isolatin1_py.html index a4a75444..9c12c445 100644 --- a/tests/gold/html/isolatin1/isolatin1_py.html +++ b/tests/gold/html/isolatin1/isolatin1_py.html @@ -51,17 +51,17 @@
-

1# -*- coding: iso8859-1 -*- 

-

2# A Python source file in another encoding. 

-

3 

-

4math = "3×4 = 12, ÷2 = 6±0" 

-

5assert len(math) == 18 

+

1# -*- coding: iso8859-1 -*- 

+

2# A Python source file in another encoding. 

+

3 

+

4math = "3×4 = 12, ÷2 = 6±0" 

+

5assert len(math) == 18 

diff --git a/tests/gold/html/omit_1/index.html b/tests/gold/html/omit_1/index.html index 27be0a0e..d8d02f6a 100644 --- a/tests/gold/html/omit_1/index.html +++ b/tests/gold/html/omit_1/index.html @@ -97,7 +97,7 @@

coverage.py v5.0a9, - created at 2019-10-13 11:13 + created at 2019-10-14 09:27

diff --git a/tests/gold/html/omit_1/m1_py.html b/tests/gold/html/omit_1/m1_py.html index de55555f..60923930 100644 --- a/tests/gold/html/omit_1/m1_py.html +++ b/tests/gold/html/omit_1/m1_py.html @@ -51,14 +51,14 @@
-

1m1a = 1 

-

2m1b = 2 

+

1m1a = 1 

+

2m1b = 2 

diff --git a/tests/gold/html/omit_1/m2_py.html b/tests/gold/html/omit_1/m2_py.html index 7d952fc5..de060f32 100644 --- a/tests/gold/html/omit_1/m2_py.html +++ b/tests/gold/html/omit_1/m2_py.html @@ -51,14 +51,14 @@
-

1m2a = 1 

-

2m2b = 2 

+

1m2a = 1 

+

2m2b = 2 

diff --git a/tests/gold/html/omit_1/m3_py.html b/tests/gold/html/omit_1/m3_py.html index 57ac11d7..76a91a4a 100644 --- a/tests/gold/html/omit_1/m3_py.html +++ b/tests/gold/html/omit_1/m3_py.html @@ -51,14 +51,14 @@
-

1m3a = 1 

-

2m3b = 2 

+

1m3a = 1 

+

2m3b = 2 

diff --git a/tests/gold/html/omit_1/main_py.html b/tests/gold/html/omit_1/main_py.html index 987ca489..9f242537 100644 --- a/tests/gold/html/omit_1/main_py.html +++ b/tests/gold/html/omit_1/main_py.html @@ -51,22 +51,22 @@
-

1import m1 

-

2import m2 

-

3import m3 

-

4 

-

5a = 5 

-

6b = 6 

-

7 

-

8assert m1.m1a == 1 

-

9assert m2.m2a == 1 

-

10assert m3.m3a == 1 

+

1import m1 

+

2import m2 

+

3import m3 

+

4 

+

5a = 5 

+

6b = 6 

+

7 

+

8assert m1.m1a == 1 

+

9assert m2.m2a == 1 

+

10assert m3.m3a == 1 

diff --git a/tests/gold/html/omit_2/index.html b/tests/gold/html/omit_2/index.html index 08210661..d51ebd2a 100644 --- a/tests/gold/html/omit_2/index.html +++ b/tests/gold/html/omit_2/index.html @@ -90,7 +90,7 @@

coverage.py v5.0a9, - created at 2019-10-13 11:13 + created at 2019-10-14 09:27

diff --git a/tests/gold/html/omit_2/m2_py.html b/tests/gold/html/omit_2/m2_py.html index 7d952fc5..de060f32 100644 --- a/tests/gold/html/omit_2/m2_py.html +++ b/tests/gold/html/omit_2/m2_py.html @@ -51,14 +51,14 @@
-

1m2a = 1 

-

2m2b = 2 

+

1m2a = 1 

+

2m2b = 2 

diff --git a/tests/gold/html/omit_2/m3_py.html b/tests/gold/html/omit_2/m3_py.html index 57ac11d7..76a91a4a 100644 --- a/tests/gold/html/omit_2/m3_py.html +++ b/tests/gold/html/omit_2/m3_py.html @@ -51,14 +51,14 @@
-

1m3a = 1 

-

2m3b = 2 

+

1m3a = 1 

+

2m3b = 2 

diff --git a/tests/gold/html/omit_2/main_py.html b/tests/gold/html/omit_2/main_py.html index 987ca489..9f242537 100644 --- a/tests/gold/html/omit_2/main_py.html +++ b/tests/gold/html/omit_2/main_py.html @@ -51,22 +51,22 @@
-

1import m1 

-

2import m2 

-

3import m3 

-

4 

-

5a = 5 

-

6b = 6 

-

7 

-

8assert m1.m1a == 1 

-

9assert m2.m2a == 1 

-

10assert m3.m3a == 1 

+

1import m1 

+

2import m2 

+

3import m3 

+

4 

+

5a = 5 

+

6b = 6 

+

7 

+

8assert m1.m1a == 1 

+

9assert m2.m2a == 1 

+

10assert m3.m3a == 1 

diff --git a/tests/gold/html/omit_3/index.html b/tests/gold/html/omit_3/index.html index 043f14f8..0d8ff217 100644 --- a/tests/gold/html/omit_3/index.html +++ b/tests/gold/html/omit_3/index.html @@ -83,7 +83,7 @@

coverage.py v5.0a9, - created at 2019-10-13 11:13 + created at 2019-10-14 09:27

diff --git a/tests/gold/html/omit_3/m3_py.html b/tests/gold/html/omit_3/m3_py.html index 57ac11d7..76a91a4a 100644 --- a/tests/gold/html/omit_3/m3_py.html +++ b/tests/gold/html/omit_3/m3_py.html @@ -51,14 +51,14 @@
-

1m3a = 1 

-

2m3b = 2 

+

1m3a = 1 

+

2m3b = 2 

diff --git a/tests/gold/html/omit_3/main_py.html b/tests/gold/html/omit_3/main_py.html index 987ca489..9f242537 100644 --- a/tests/gold/html/omit_3/main_py.html +++ b/tests/gold/html/omit_3/main_py.html @@ -51,22 +51,22 @@
-

1import m1 

-

2import m2 

-

3import m3 

-

4 

-

5a = 5 

-

6b = 6 

-

7 

-

8assert m1.m1a == 1 

-

9assert m2.m2a == 1 

-

10assert m3.m3a == 1 

+

1import m1 

+

2import m2 

+

3import m3 

+

4 

+

5a = 5 

+

6b = 6 

+

7 

+

8assert m1.m1a == 1 

+

9assert m2.m2a == 1 

+

10assert m3.m3a == 1 

diff --git a/tests/gold/html/omit_4/index.html b/tests/gold/html/omit_4/index.html index f1ac8ac0..d91291fc 100644 --- a/tests/gold/html/omit_4/index.html +++ b/tests/gold/html/omit_4/index.html @@ -90,7 +90,7 @@

coverage.py v5.0a9, - created at 2019-10-13 11:13 + created at 2019-10-14 09:27

diff --git a/tests/gold/html/omit_4/m1_py.html b/tests/gold/html/omit_4/m1_py.html index de55555f..60923930 100644 --- a/tests/gold/html/omit_4/m1_py.html +++ b/tests/gold/html/omit_4/m1_py.html @@ -51,14 +51,14 @@
-

1m1a = 1 

-

2m1b = 2 

+

1m1a = 1 

+

2m1b = 2 

diff --git a/tests/gold/html/omit_4/m3_py.html b/tests/gold/html/omit_4/m3_py.html index 57ac11d7..76a91a4a 100644 --- a/tests/gold/html/omit_4/m3_py.html +++ b/tests/gold/html/omit_4/m3_py.html @@ -51,14 +51,14 @@
-

1m3a = 1 

-

2m3b = 2 

+

1m3a = 1 

+

2m3b = 2 

diff --git a/tests/gold/html/omit_4/main_py.html b/tests/gold/html/omit_4/main_py.html index 987ca489..9f242537 100644 --- a/tests/gold/html/omit_4/main_py.html +++ b/tests/gold/html/omit_4/main_py.html @@ -51,22 +51,22 @@
-

1import m1 

-

2import m2 

-

3import m3 

-

4 

-

5a = 5 

-

6b = 6 

-

7 

-

8assert m1.m1a == 1 

-

9assert m2.m2a == 1 

-

10assert m3.m3a == 1 

+

1import m1 

+

2import m2 

+

3import m3 

+

4 

+

5a = 5 

+

6b = 6 

+

7 

+

8assert m1.m1a == 1 

+

9assert m2.m2a == 1 

+

10assert m3.m3a == 1 

diff --git a/tests/gold/html/omit_5/index.html b/tests/gold/html/omit_5/index.html index 0e236a04..f1e0fe60 100644 --- a/tests/gold/html/omit_5/index.html +++ b/tests/gold/html/omit_5/index.html @@ -83,7 +83,7 @@

coverage.py v5.0a9, - created at 2019-10-13 11:13 + created at 2019-10-14 09:27

diff --git a/tests/gold/html/omit_5/m1_py.html b/tests/gold/html/omit_5/m1_py.html index de55555f..60923930 100644 --- a/tests/gold/html/omit_5/m1_py.html +++ b/tests/gold/html/omit_5/m1_py.html @@ -51,14 +51,14 @@
-

1m1a = 1 

-

2m1b = 2 

+

1m1a = 1 

+

2m1b = 2 

diff --git a/tests/gold/html/omit_5/main_py.html b/tests/gold/html/omit_5/main_py.html index 987ca489..9f242537 100644 --- a/tests/gold/html/omit_5/main_py.html +++ b/tests/gold/html/omit_5/main_py.html @@ -51,22 +51,22 @@
-

1import m1 

-

2import m2 

-

3import m3 

-

4 

-

5a = 5 

-

6b = 6 

-

7 

-

8assert m1.m1a == 1 

-

9assert m2.m2a == 1 

-

10assert m3.m3a == 1 

+

1import m1 

+

2import m2 

+

3import m3 

+

4 

+

5a = 5 

+

6b = 6 

+

7 

+

8assert m1.m1a == 1 

+

9assert m2.m2a == 1 

+

10assert m3.m3a == 1 

diff --git a/tests/gold/html/other/blah_blah_other_py.html b/tests/gold/html/other/blah_blah_other_py.html index 23d48ad0..d3a4ebfc 100644 --- a/tests/gold/html/other/blah_blah_other_py.html +++ b/tests/gold/html/other/blah_blah_other_py.html @@ -3,7 +3,7 @@ - Coverage for /private/var/folders/j2/gr3cj3jn63s5q8g3bjvw57hm0000gp/T/coverage_test/tests_test_html_HtmlGoldTests_test_other_86236073/othersrc/other.py: 100% + Coverage for /private/var/folders/j2/gr3cj3jn63s5q8g3bjvw57hm0000gp/T/coverage_test/tests_test_html_HtmlGoldTests_test_other_08291136/othersrc/other.py: 100% @@ -16,7 +16,7 @@
-

1# A file in another directory. We're checking that it ends up in the 

-

2# HTML report. 

-

3 

-

4print("This is the other src!") 

+

1# A file in another directory. We're checking that it ends up in the 

+

2# HTML report. 

+

3 

+

4print("This is the other src!") 

diff --git a/tests/gold/html/other/here_py.html b/tests/gold/html/other/here_py.html index 81f2e652..df2715d6 100644 --- a/tests/gold/html/other/here_py.html +++ b/tests/gold/html/other/here_py.html @@ -51,18 +51,18 @@
-

1import other 

-

2 

-

3if 1 < 2: 

-

4 h = 3 

-

5else: 

-

6 h = 4 

+

1import other 

+

2 

+

3if 1 < 2: 

+

4 h = 3 

+

5else: 

+

6 h = 4 

diff --git a/tests/gold/html/other/index.html b/tests/gold/html/other/index.html index 23bf5f08..fa1a770f 100644 --- a/tests/gold/html/other/index.html +++ b/tests/gold/html/other/index.html @@ -60,7 +60,7 @@ - /private/var/folders/j2/gr3cj3jn63s5q8g3bjvw57hm0000gp/T/coverage_test/tests_test_html_HtmlGoldTests_test_other_86236073/othersrc/other.py + /private/var/folders/j2/gr3cj3jn63s5q8g3bjvw57hm0000gp/T/coverage_test/tests_test_html_HtmlGoldTests_test_other_08291136/othersrc/other.py 1 0 0 @@ -83,7 +83,7 @@

coverage.py v5.0a9, - created at 2019-10-13 11:13 + created at 2019-10-14 09:27

diff --git a/tests/gold/html/partial/index.html b/tests/gold/html/partial/index.html index fb3b89ae..3901f941 100644 --- a/tests/gold/html/partial/index.html +++ b/tests/gold/html/partial/index.html @@ -84,7 +84,7 @@

coverage.py v5.0a9, - created at 2019-10-13 11:13 + created at 2019-10-14 09:27

diff --git a/tests/gold/html/partial/partial_py.html b/tests/gold/html/partial/partial_py.html index 97d60ba4..25846ab8 100644 --- a/tests/gold/html/partial/partial_py.html +++ b/tests/gold/html/partial/partial_py.html @@ -52,29 +52,29 @@
-

1# partial branches and excluded lines 

-

2a = 6 

-

3 

-

4while "no peephole".upper(): # t4 4 ↛ 7line 4 didn't jump to line 7, because the condition on line 4 was never false

-

5 break 

-

6 

-

7while a: # pragma: no branch 

-

8 break 

-

9 

-

10if 0: 

-

11 never_happen() 

-

12 

-

13if 1: 

-

14 a = 21 

-

15 

-

16if a == 23: 

-

17 raise AssertionError("Can't") 

+

1# partial branches and excluded lines 

+

2a = 6 

+

3 

+

4while "no peephole".upper(): # t4 4 ↛ 7line 4 didn't jump to line 7, because the condition on line 4 was never false

+

5 break 

+

6 

+

7while a: # pragma: no branch 

+

8 break 

+

9 

+

10if 0: 

+

11 never_happen() 

+

12 

+

13if 1: 

+

14 a = 21 

+

15 

+

16if a == 23: 

+

17 raise AssertionError("Can't") 

diff --git a/tests/gold/html/styled/a_py.html b/tests/gold/html/styled/a_py.html index 9af1988b..4687e464 100644 --- a/tests/gold/html/styled/a_py.html +++ b/tests/gold/html/styled/a_py.html @@ -52,17 +52,17 @@
-

1if 1 < 2: 

-

2 # Needed a < to look at HTML entities. 

-

3 a = 3 

-

4else: 

-

5 a = 4 

+

1if 1 < 2: 

+

2 # Needed a < to look at HTML entities. 

+

3 a = 3 

+

4else: 

+

5 a = 4 

diff --git a/tests/gold/html/styled/index.html b/tests/gold/html/styled/index.html index 0da7a472..6e182fa6 100644 --- a/tests/gold/html/styled/index.html +++ b/tests/gold/html/styled/index.html @@ -77,7 +77,7 @@

coverage.py v5.0a9, - created at 2019-10-13 11:13 + created at 2019-10-14 09:27

diff --git a/tests/gold/html/unicode/index.html b/tests/gold/html/unicode/index.html index 492b5616..bfa09a38 100644 --- a/tests/gold/html/unicode/index.html +++ b/tests/gold/html/unicode/index.html @@ -76,7 +76,7 @@

coverage.py v5.0a9, - created at 2019-10-13 11:13 + created at 2019-10-14 09:27

diff --git a/tests/gold/html/unicode/unicode_py.html b/tests/gold/html/unicode/unicode_py.html index e10fde52..46722961 100644 --- a/tests/gold/html/unicode/unicode_py.html +++ b/tests/gold/html/unicode/unicode_py.html @@ -51,17 +51,17 @@
-

1# -*- coding: utf-8 -*- 

-

2# A Python source file with exotic characters. 

-

3 

-

4upside_down = "ʎd˙ǝbɐɹǝʌoɔ" 

-

5surrogate = "db40,dd00: x󠄀" 

+

1# -*- coding: utf-8 -*- 

+

2# A Python source file with exotic characters. 

+

3 

+

4upside_down = "ʎd˙ǝbɐɹǝʌoɔ" 

+

5surrogate = "db40,dd00: x󠄀" 

-- cgit v1.2.1