Projects STRLCPY recollapse Commits 51555e59
🤬
  • ■ ■ ■ ■ ■ ■
    recollapse
    skipped 80 lines
    81 81   
    82 82   def build_normalization_dict(self):
    83 83   charset = [chr(c) for c in range(0x20,0x7f)]
    84  - for i in range(0x80):
    85  - c = chr(i)
    86  - if c in charset:
    87  - self.normalization_d[c] = []
     84 + for c in charset:
     85 + self.normalization_d[c] = []
    88 86  
    89 87   for c in range(0xffff):
    90 88   norm_c = unidecode.unidecode(chr(c))
    skipped 102 lines
Please wait...
Page is in error, reload to recover