1. 27 Nis, 2009 1 kayıt (commit)
  2. 10 Eyl, 2008 1 kayıt (commit)
  3. 13 Haz, 2008 1 kayıt (commit)
  4. 09 Mar, 2006 1 kayıt (commit)
  5. 04 Agu, 2004 1 kayıt (commit)
    • Hye-Shik Chang's avatar
      SF #989185: Drop unicode.iswide() and unicode.width() and add · e9ddfbb4
      Hye-Shik Chang yazdı
      unicodedata.east_asian_width().  You can still implement your own
      simple width() function using it like this:
          def width(u):
              w = 0
              for c in unicodedata.normalize('NFC', u):
                  cwidth = unicodedata.east_asian_width(c)
                  if cwidth in ('W', 'F'): w += 2
                  else: w += 1
              return w
      e9ddfbb4
  6. 02 Haz, 2004 1 kayıt (commit)
  7. 25 Kas, 2002 1 kayıt (commit)
  8. 24 Kas, 2002 1 kayıt (commit)
  9. 23 Kas, 2002 1 kayıt (commit)
  10. 18 Eki, 2002 1 kayıt (commit)
  11. 21 Ock, 2001 2 kayıt (commit)
  12. 03 Kas, 2000 1 kayıt (commit)
  13. 25 Eyl, 2000 1 kayıt (commit)
    • Fredrik Lundh's avatar
      unicode database compression, step 2: · cfcea492
      Fredrik Lundh yazdı
      - fixed attributions
      - moved decomposition data to a separate table, in preparation
        for step 3 (which won't happen before 2.0 final, promise!)
      - use relative paths in the generator script
      
      I have a lot more stuff in the works for 2.1, but let's leave
      that for another day...
      cfcea492
  14. 24 Eyl, 2000 1 kayıt (commit)