(cats)
| 7 | yield(i) |
| 8 | |
| 9 | def gen_bidirectional(cats): |
| 10 | for i in range(0, 0x110000): |
| 11 | if unicodedata.bidirectional(chr(i)) in cats: |
| 12 | yield(i) |
| 13 | |
| 14 | def compact_set(l): |
| 15 | single = [] |
no outgoing calls
no test coverage detected
searching dependent graphs…