fonttools 4.55.6__cp312-cp312-win_amd64.whl → 4.55.8__cp312-cp312-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of fonttools might be problematic. Click here for more details.
- fontTools/__init__.py +1 -1
- fontTools/cu2qu/cu2qu.cp312-win_amd64.pyd +0 -0
- fontTools/feaLib/lexer.cp312-win_amd64.pyd +0 -0
- fontTools/misc/bezierTools.cp312-win_amd64.pyd +0 -0
- fontTools/pens/momentsPen.cp312-win_amd64.pyd +0 -0
- fontTools/qu2cu/qu2cu.cp312-win_amd64.pyd +0 -0
- fontTools/unicodedata/Blocks.py +0 -1
- fontTools/unicodedata/ScriptExtensions.py +23 -3
- fontTools/unicodedata/Scripts.py +0 -1
- fontTools/varLib/iup.cp312-win_amd64.pyd +0 -0
- {fonttools-4.55.6.dist-info → fonttools-4.55.8.dist-info}/METADATA +14 -1381
- {fonttools-4.55.6.dist-info → fonttools-4.55.8.dist-info}/RECORD +17 -17
- {fonttools-4.55.6.data → fonttools-4.55.8.data}/data/share/man/man1/ttx.1 +0 -0
- {fonttools-4.55.6.dist-info → fonttools-4.55.8.dist-info}/LICENSE +0 -0
- {fonttools-4.55.6.dist-info → fonttools-4.55.8.dist-info}/WHEEL +0 -0
- {fonttools-4.55.6.dist-info → fonttools-4.55.8.dist-info}/entry_points.txt +0 -0
- {fonttools-4.55.6.dist-info → fonttools-4.55.8.dist-info}/top_level.txt +0 -0
fontTools/__init__.py
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
fontTools/unicodedata/Blocks.py
CHANGED
|
@@ -32,9 +32,10 @@
|
|
|
32
32
|
#
|
|
33
33
|
# @missing: 0000..10FFFF; <script>
|
|
34
34
|
|
|
35
|
-
|
|
36
35
|
RANGES = [
|
|
37
|
-
0x0000, # ..
|
|
36
|
+
0x0000, # .. 0x00B6 ; None
|
|
37
|
+
0x00B7, # .. 0x00B7 ; {'Avst', 'Cari', 'Copt', 'Dupl', 'Elba', 'Geor', 'Glag', 'Gong', 'Goth', 'Grek', 'Hani', 'Latn', 'Lydi', 'Mahj', 'Perm', 'Shaw'}
|
|
38
|
+
0x00B8, # .. 0x02BB ; None
|
|
38
39
|
0x02BC, # .. 0x02BC ; {'Beng', 'Cyrl', 'Deva', 'Latn', 'Lisu', 'Thai', 'Toto'}
|
|
39
40
|
0x02BD, # .. 0x02C6 ; None
|
|
40
41
|
0x02C7, # .. 0x02C7 ; {'Bopo', 'Latn'}
|
|
@@ -316,7 +317,26 @@ RANGES = [
|
|
|
316
317
|
]
|
|
317
318
|
|
|
318
319
|
VALUES = [
|
|
319
|
-
None, # 0000..
|
|
320
|
+
None, # 0000..00B6
|
|
321
|
+
{
|
|
322
|
+
"Avst",
|
|
323
|
+
"Cari",
|
|
324
|
+
"Copt",
|
|
325
|
+
"Dupl",
|
|
326
|
+
"Elba",
|
|
327
|
+
"Geor",
|
|
328
|
+
"Glag",
|
|
329
|
+
"Gong",
|
|
330
|
+
"Goth",
|
|
331
|
+
"Grek",
|
|
332
|
+
"Hani",
|
|
333
|
+
"Latn",
|
|
334
|
+
"Lydi",
|
|
335
|
+
"Mahj",
|
|
336
|
+
"Perm",
|
|
337
|
+
"Shaw",
|
|
338
|
+
}, # 00B7..00B7
|
|
339
|
+
None, # 00B8..02BB
|
|
320
340
|
{"Beng", "Cyrl", "Deva", "Latn", "Lisu", "Thai", "Toto"}, # 02BC..02BC
|
|
321
341
|
None, # 02BD..02C6
|
|
322
342
|
{"Bopo", "Latn"}, # 02C7..02C7
|
fontTools/unicodedata/Scripts.py
CHANGED
|
Binary file
|