1. 07 Haz, 2018 1 kayıt (commit)
  2. 23 Haz, 2017 1 kayıt (commit)
  3. 15 Eyl, 2016 1 kayıt (commit)
    • Benjamin Peterson's avatar
      Unicode 9.0.0 · 67752315
      Benjamin Peterson yazdı
      Not completely mechanical since support for East Asian Width changes—emoji
      codepoints became Wide—had to be added to unicodedata.
      67752315
  4. 27 Haz, 2015 1 kayıt (commit)
  5. 06 Tem, 2014 1 kayıt (commit)
  6. 10 Eki, 2013 1 kayıt (commit)
  7. 13 Agu, 2013 1 kayıt (commit)
  8. 29 Eyl, 2012 1 kayıt (commit)
  9. 21 Şub, 2012 1 kayıt (commit)
  10. 16 Ock, 2012 1 kayıt (commit)
  11. 14 Ock, 2012 1 kayıt (commit)
  12. 11 Ock, 2012 1 kayıt (commit)
  13. 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
  14. 12 Eyl, 2010 1 kayıt (commit)
  15. 18 Agu, 2010 1 kayıt (commit)
    • Amaury Forgeot d'Arc's avatar
      #5127: Even on narrow unicode builds, the C functions that access the Unicode · 324ac65c
      Amaury Forgeot d'Arc yazdı
      Database (Py_UNICODE_TOLOWER, Py_UNICODE_ISDECIMAL, and others) now accept
      and return characters from the full Unicode range (Py_UCS4).
      
      The differences from Python code are few:
      - unicodedata.numeric(), unicodedata.decimal() and unicodedata.digit()
        now return the correct value for large code points
      - repr() may consider more characters as printable.
      324ac65c
  16. 30 Mar, 2010 2 kayıt (commit)
  17. 19 Mar, 2010 2 kayıt (commit)
  18. 18 Mar, 2010 2 kayıt (commit)
  19. 13 Eki, 2009 2 kayıt (commit)
  20. 06 Eki, 2009 2 kayıt (commit)
  21. 25 Nis, 2009 3 kayıt (commit)
  22. 26 Mar, 2009 1 kayıt (commit)
  23. 10 Eyl, 2008 2 kayıt (commit)
  24. 04 Tem, 2008 1 kayıt (commit)
  25. 11 Haz, 2008 1 kayıt (commit)
    • Georg Brandl's avatar
      #2630: Implement PEP 3138. · 559e5d7f
      Georg Brandl yazdı
      The repr() of a string now contains printable Unicode characters unescaped.
      The new ascii() builtin can be used to get a repr() with only ASCII characters in it.
      
      PEP and patch were written by Atsuo Ishimoto.
      559e5d7f
  26. 04 Haz, 2008 2 kayıt (commit)
  27. 14 Agu, 2007 1 kayıt (commit)
  28. 09 Mar, 2006 1 kayıt (commit)
  29. 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
  30. 02 Haz, 2004 1 kayıt (commit)
  31. 25 Kas, 2002 1 kayıt (commit)