1. 30 Mar, 2010 1 kayıt (commit)
  2. 18 Mar, 2010 1 kayıt (commit)
  3. 15 Mar, 2010 1 kayıt (commit)
  4. 13 Eki, 2009 1 kayıt (commit)
  5. 06 Eki, 2009 1 kayıt (commit)
  6. 27 Nis, 2009 1 kayıt (commit)
  7. 25 Nis, 2009 1 kayıt (commit)
  8. 10 Eyl, 2008 1 kayıt (commit)
  9. 13 Haz, 2008 1 kayıt (commit)
  10. 11 Mar, 2006 1 kayıt (commit)
  11. 10 Mar, 2006 1 kayıt (commit)
  12. 09 Mar, 2006 1 kayıt (commit)
  13. 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
  14. 02 Haz, 2004 1 kayıt (commit)
  15. 25 Kas, 2002 1 kayıt (commit)
  16. 24 Kas, 2002 1 kayıt (commit)
  17. 23 Kas, 2002 1 kayıt (commit)
  18. 18 Eki, 2002 2 kayıt (commit)
  19. 11 Eyl, 2002 1 kayıt (commit)
  20. 21 Ock, 2001 3 kayıt (commit)
  21. 03 Kas, 2000 1 kayıt (commit)
  22. 26 Eki, 2000 1 kayıt (commit)
  23. 25 Eyl, 2000 5 kayıt (commit)
    • Fredrik Lundh's avatar
    • Fredrik Lundh's avatar
      unicode database compression, step 3: · 0f8fad49
      Fredrik Lundh yazdı
      - added decimal digit and digit properties to the unidb tables
      0f8fad49
    • Fredrik Lundh's avatar
      unicode database compression, step 3: · e9133f7e
      Fredrik Lundh yazdı
      - use unidb compression for the unicodectype module.  smaller,
        faster, and slightly more portable...
      
      - also mention the unicode directory in Tools/README
      e9133f7e
    • 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
    • Tim Peters's avatar
      Fiddled w/ /F's cool new splitbins function: documented it, generalized it · 21013488
      Tim Peters yazdı
      a bit, sped it a lot primarily by removing the unused assumption that None was
      a legit bin entry (the function doesn't really need to assume that there's
      anything special about 0), added an optional "trace" argument, and in __debug__
      mode added exhaustive verification that the decomposition is both correct and
      doesn't overstep any array bounds (which wasn't obvious to me from staring at the
      generated C code -- now I feel safe!).  Did not commit a new unicodedata_db.h, as
      the one produced by this version is identical to the one already checked in.
      21013488
  24. 24 Eyl, 2000 1 kayıt (commit)