(cats)
| 2 | from unicodedata import ucd_3_2_0 as unicodedata |
| 3 | |
| 4 | def gen_category(cats): |
| 5 | for i in range(0, 0x110000): |
| 6 | if unicodedata.category(chr(i)) in cats: |
| 7 | yield(i) |
| 8 | |
| 9 | def gen_bidirectional(cats): |
| 10 | for i in range(0, 0x110000): |
no outgoing calls
no test coverage detected
searching dependent graphs…