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 9de00e2 commit 467d0d6Copy full SHA for 467d0d6
1 file changed
Lib/stringprep.py
@@ -21,7 +21,7 @@ def in_table_b1(code):
21
return ord(code) in b1_set
22
23
24
-b3_exceptions = frozendict({
+b3_exceptions = {
25
0xb5:'\u03bc', 0xdf:'ss', 0x130:'i\u0307', 0x149:'\u02bcn',
26
0x17f:'s', 0x1f0:'j\u030c', 0x345:'\u03b9', 0x37a:' \u03b9',
27
0x390:'\u03b9\u0308\u0301', 0x3b0:'\u03c5\u0308\u0301', 0x3c2:'\u03c3', 0x3d0:'\u03b2',
@@ -184,7 +184,7 @@ def in_table_b1(code):
184
0x1d79c:'\u03bd', 0x1d79d:'\u03be', 0x1d79e:'\u03bf', 0x1d79f:'\u03c0',
185
0x1d7a0:'\u03c1', 0x1d7a1:'\u03b8', 0x1d7a2:'\u03c3', 0x1d7a3:'\u03c4',
186
0x1d7a4:'\u03c5', 0x1d7a5:'\u03c6', 0x1d7a6:'\u03c7', 0x1d7a7:'\u03c8',
187
-0x1d7a8:'\u03c9', 0x1d7bb:'\u03c3', })
+0x1d7a8:'\u03c9', 0x1d7bb:'\u03c3', }
188
189
def map_table_b3(code):
190
r = b3_exceptions.get(ord(code))
0 commit comments