1. 21 Şub, 2012 1 kayıt (commit)
  2. 11 Eki, 2010 1 kayıt (commit)
    • Martin v. Löwis's avatar
      Upgrade to Unicode 6.0.0. · baecd724
      Martin v. Löwis yazdı
      makeunicodedata.py: download all data files from unicode.org,
        switch to extracting Unihan data from zip file.
        Read linebreakprops and derivednormalizationprops even for
        old versions, even though they are not used in delta records.
      test:unicode.py: U+11000 is now assigned, use U+14000 instead.
      baecd724
  3. 19 Mar, 2010 2 kayıt (commit)
  4. 18 Mar, 2010 1 kayıt (commit)
  5. 06 Eki, 2009 1 kayıt (commit)
    • Amaury Forgeot d'Arc's avatar
      Merged revisions 75272-75273 via svnmerge from · 7d520793
      Amaury Forgeot d'Arc yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r75272 | amaury.forgeotdarc | 2009-10-06 21:56:32 +0200 (mar., 06 oct. 2009) | 5 lines
      
        #1571184: makeunicodedata.py now generates the functions _PyUnicode_ToNumeric,
        _PyUnicode_IsLinebreak and _PyUnicode_IsWhitespace.
      
        It now also parses the Unihan.txt for numeric values.
      ........
        r75273 | amaury.forgeotdarc | 2009-10-06 22:02:09 +0200 (mar., 06 oct. 2009) | 2 lines
      
        Add Anders Chrigstrom to Misc/ACKS for his work on unicodedata.
      ........
      7d520793
  6. 27 Nis, 2009 1 kayıt (commit)
  7. 10 Eyl, 2008 1 kayıt (commit)
  8. 13 Haz, 2008 1 kayıt (commit)
  9. 09 Mar, 2006 1 kayıt (commit)
  10. 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
  11. 02 Haz, 2004 1 kayıt (commit)
  12. 25 Kas, 2002 1 kayıt (commit)
  13. 24 Kas, 2002 1 kayıt (commit)
  14. 23 Kas, 2002 1 kayıt (commit)
  15. 18 Eki, 2002 1 kayıt (commit)
  16. 21 Ock, 2001 2 kayıt (commit)
  17. 03 Kas, 2000 1 kayıt (commit)
  18. 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
  19. 24 Eyl, 2000 1 kayıt (commit)