Skip to content

Commit e6e96ee

Browse files
committed
#16245: Fix the value of a few entities in html.entities.html5.
1 parent 5445a8c commit e6e96ee

File tree

2 files changed

+14
-12
lines changed

2 files changed

+14
-12
lines changed

Lib/html/entities.py

+12-12
Original file line numberDiff line numberDiff line change
@@ -679,7 +679,7 @@
679679
'dopf;': '\U0001d555',
680680
'Dot;': '\xa8',
681681
'dot;': '\u02d9',
682-
'DotDot;': '\u25cc\u20dc',
682+
'DotDot;': '\u20dc',
683683
'doteq;': '\u2250',
684684
'doteqdot;': '\u2251',
685685
'DotEqual;': '\u2250',
@@ -706,7 +706,7 @@
706706
'downarrow;': '\u2193',
707707
'DownArrowBar;': '\u2913',
708708
'DownArrowUpArrow;': '\u21f5',
709-
'DownBreve;': '\u25cc\u0311',
709+
'DownBreve;': '\u0311',
710710
'downdownarrows;': '\u21ca',
711711
'downharpoonleft;': '\u21c3',
712712
'downharpoonright;': '\u21c2',
@@ -1130,9 +1130,9 @@
11301130
'Lambda;': '\u039b',
11311131
'lambda;': '\u03bb',
11321132
'Lang;': '\u27ea',
1133-
'lang;': '\u2329',
1133+
'lang;': '\u27e8',
11341134
'langd;': '\u2991',
1135-
'langle;': '\u2329',
1135+
'langle;': '\u27e8',
11361136
'lap;': '\u2a85',
11371137
'Laplacetrf;': '\u2112',
11381138
'laquo': '\xab',
@@ -1177,7 +1177,7 @@
11771177
'ldsh;': '\u21b2',
11781178
'lE;': '\u2266',
11791179
'le;': '\u2264',
1180-
'LeftAngleBracket;': '\u2329',
1180+
'LeftAngleBracket;': '\u27e8',
11811181
'LeftArrow;': '\u2190',
11821182
'Leftarrow;': '\u21d0',
11831183
'leftarrow;': '\u2190',
@@ -1427,7 +1427,7 @@
14271427
'nesim;': '\u2242\u0338',
14281428
'NestedGreaterGreater;': '\u226b',
14291429
'NestedLessLess;': '\u226a',
1430-
'NewLine;': '\u240a',
1430+
'NewLine;': '\n',
14311431
'nexist;': '\u2204',
14321432
'nexists;': '\u2204',
14331433
'Nfr;': '\U0001d511',
@@ -1826,10 +1826,10 @@
18261826
'radic;': '\u221a',
18271827
'raemptyv;': '\u29b3',
18281828
'Rang;': '\u27eb',
1829-
'rang;': '\u232a',
1829+
'rang;': '\u27e9',
18301830
'rangd;': '\u2992',
18311831
'range;': '\u29a5',
1832-
'rangle;': '\u232a',
1832+
'rangle;': '\u27e9',
18331833
'raquo': '\xbb',
18341834
'raquo;': '\xbb',
18351835
'Rarr;': '\u21a0',
@@ -1897,7 +1897,7 @@
18971897
'Rho;': '\u03a1',
18981898
'rho;': '\u03c1',
18991899
'rhov;': '\u03f1',
1900-
'RightAngleBracket;': '\u232a',
1900+
'RightAngleBracket;': '\u27e9',
19011901
'RightArrow;': '\u2192',
19021902
'Rightarrow;': '\u21d2',
19031903
'rightarrow;': '\u2192',
@@ -2166,7 +2166,7 @@
21662166
'swnwar;': '\u292a',
21672167
'szlig': '\xdf',
21682168
'szlig;': '\xdf',
2169-
'Tab;': '\u2409',
2169+
'Tab;': '\t',
21702170
'target;': '\u2316',
21712171
'Tau;': '\u03a4',
21722172
'tau;': '\u03c4',
@@ -2177,7 +2177,7 @@
21772177
'tcedil;': '\u0163',
21782178
'Tcy;': '\u0422',
21792179
'tcy;': '\u0442',
2180-
'tdot;': '\u25cc\u20db',
2180+
'tdot;': '\u20db',
21812181
'telrec;': '\u2315',
21822182
'Tfr;': '\U0001d517',
21832183
'tfr;': '\U0001d531',
@@ -2231,7 +2231,7 @@
22312231
'tridot;': '\u25ec',
22322232
'trie;': '\u225c',
22332233
'triminus;': '\u2a3a',
2234-
'TripleDot;': '\u25cc\u20db',
2234+
'TripleDot;': '\u20db',
22352235
'triplus;': '\u2a39',
22362236
'trisb;': '\u29cd',
22372237
'tritime;': '\u2a3b',

Misc/NEWS

+2
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ Core and Builtins
4646
Library
4747
-------
4848

49+
- Issue #16245: Fix the value of a few entities in html.entities.html5.
50+
4951
- Issue #14398: Fix size truncation and overflow bugs in the bz2 module.
5052

5153
- Issue #16220: wsgiref now always calls close() on an iterable response.

0 commit comments

Comments
 (0)