Skip to content

Commit 479f507

Browse files
authored
Fix missing char in palmos encoding
0x8b correctly encodes to ‹, but 0x9b was mistakenly marked as a control character instead of ›.
1 parent a4625d5 commit 479f507

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/encodings/palmos.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ def getregentry():
201201
'\u02dc' # 0x98 -> SMALL TILDE
202202
'\u2122' # 0x99 -> TRADE MARK SIGN
203203
'\u0161' # 0x9A -> LATIN SMALL LETTER S WITH CARON
204-
'\x9b' # 0x9B -> <control>
204+
'\u203a' # 0x9B -> SINGLE RIGHT-POINTING ANGLE QUOTATION MARK
205205
'\u0153' # 0x9C -> LATIN SMALL LIGATURE OE
206206
'\x9d' # 0x9D -> <control>
207207
'\x9e' # 0x9E -> <control>

0 commit comments

Comments
 (0)