1. 30 Mar, 2010 1 kayıt (commit)
  2. 19 Mar, 2010 2 kayıt (commit)
  3. 18 Mar, 2010 1 kayıt (commit)
  4. 13 Eki, 2009 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. 25 Nis, 2009 1 kayıt (commit)
  7. 26 Mar, 2009 1 kayıt (commit)
  8. 10 Eyl, 2008 1 kayıt (commit)
  9. 04 Tem, 2008 1 kayıt (commit)
  10. 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
  11. 04 Haz, 2008 2 kayıt (commit)
  12. 14 Agu, 2007 1 kayıt (commit)
  13. 09 Mar, 2006 1 kayıt (commit)
  14. 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
  15. 02 Haz, 2004 1 kayıt (commit)
  16. 25 Kas, 2002 1 kayıt (commit)
  17. 24 Kas, 2002 1 kayıt (commit)
  18. 18 Eki, 2002 1 kayıt (commit)
  19. 21 Ock, 2001 1 kayıt (commit)
  20. 03 Kas, 2000 1 kayıt (commit)
  21. 25 Eyl, 2000 2 kayıt (commit)