cpython/Tools/unicode
LiarPrincess 0c1d7a06ed
bpo-47243: Duplicate entry in 'Objects/unicodetype_db.h' (GH-32376)
Fix for duplicate 1st entry in 'Objects/unicodetype_db.h':

```c
/* a list of unique character type descriptors */
const _PyUnicode_TypeRecord _PyUnicode_TypeRecords[] = {
    {0, 0, 0, 0, 0, 0},
    {0, 0, 0, 0, 0, 0}, <--- HERE
    {0, 0, 0, 0, 0, 32},
    {0, 0, 0, 0, 0, 48},
    …
```

https://bugs.python.org/issue47243

Automerge-Triggered-By: GH:isidentical
2022-09-28 06:57:14 -07:00
..
python-mappings Revert "gh-84508: Add mapping files for Korean and Japanese. (gh-93309)" (#93320) 2022-05-29 09:49:19 +09:00
Makefile
comparecodecs.py
gencjkcodecs.py
gencodec.py
genmap_japanese.py
genmap_korean.py
genmap_schinese.py
genmap_support.py
genmap_tchinese.py gh-84508: tool to generate cjk traditional chinese mappings (gh-93272) 2022-06-11 23:19:41 +09:00
genwincodec.py
genwincodecs.bat
listcodecs.py
makeunicodedata.py bpo-47243: Duplicate entry in 'Objects/unicodetype_db.h' (GH-32376) 2022-09-28 06:57:14 -07:00
mkstringprep.py