1. 18 May, 2015 1 kayıt (commit)
  2. 16 Mar, 2015 1 kayıt (commit)
  3. 15 Mar, 2015 1 kayıt (commit)
  4. 13 Haz, 2013 1 kayıt (commit)
  5. 29 Ock, 2013 2 kayıt (commit)
  6. 17 Kas, 2012 1 kayıt (commit)
  7. 23 Eyl, 2012 1 kayıt (commit)
  8. 17 Kas, 2011 1 kayıt (commit)
  9. 15 Kas, 2011 1 kayıt (commit)
  10. 04 Kas, 2011 1 kayıt (commit)
  11. 05 Eki, 2011 1 kayıt (commit)
  12. 04 Eki, 2011 1 kayıt (commit)
  13. 29 Eyl, 2011 1 kayıt (commit)
  14. 28 Eyl, 2011 1 kayıt (commit)
  15. 21 Kas, 2010 2 kayıt (commit)
  16. 20 Kas, 2010 1 kayıt (commit)
  17. 09 Eyl, 2010 2 kayıt (commit)
  18. 03 Tem, 2010 2 kayıt (commit)
    • Ezio Melotti's avatar
      Merged revisions 81758-81759 via svnmerge from · 86e5e17b
      Ezio Melotti yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r81758 | ezio.melotti | 2010-06-05 20:51:07 +0300 (Sat, 05 Jun 2010) | 15 lines
      
        Update PyUnicode_DecodeUTF8 from RFC 2279 to RFC 3629.
      
        1) #8271: when a byte sequence is invalid, only the start byte and all the
           valid continuation bytes are now replaced by U+FFFD, instead of replacing
           the number of bytes specified by the start byte.
           See http://www.unicode.org/versions/Unicode5.2.0/ch03.pdf (pages 94-95);
        2) 5- and 6-bytes-long UTF-8 sequences are now considered invalid (no changes
           in behavior);
        3) Add code and tests to reject surrogates (U+D800-U+DFFF) as defined in
           RFC 3629, but leave it commented out since it's not backward compatible;
        4) Change the error messages "unexpected code byte" to "invalid start byte"
           and "invalid data" to "invalid continuation byte";
        5) Add an extensive set of tests in test_unicode;
        6) Fix test_codeccallbacks because it was failing after this change.
      ........
        r81759 | ezio.melotti | 2010-06-05 22:21:32 +0300 (Sat, 05 Jun 2010) | 1 line
      
        Add a NEWS entry for r81758 and clarify a comment.
      ........
      86e5e17b
    • Ezio Melotti's avatar
      Merged revisions 82413,82468 via svnmerge from · 25bc019d
      Ezio Melotti yazdı
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ........
        r82413 | ezio.melotti | 2010-07-01 10:32:02 +0300 (Thu, 01 Jul 2010) | 13 lines
      
        Update PyUnicode_DecodeUTF8 from RFC 2279 to RFC 3629.
      
        1) #8271: when a byte sequence is invalid, only the start byte and all the
           valid continuation bytes are now replaced by U+FFFD, instead of replacing
           the number of bytes specified by the start byte.
           See http://www.unicode.org/versions/Unicode5.2.0/ch03.pdf (pages 94-95);
        2) 5- and 6-bytes-long UTF-8 sequences are now considered invalid (no changes
           in behavior);
        3) Change the error messages "unexpected code byte" to "invalid start byte"
           and "invalid data" to "invalid continuation byte";
        4) Add an extensive set of tests in test_unicode;
        5) Fix test_codeccallbacks because it was failing after this change.
      ........
        r82468 | ezio.melotti | 2010-07-03 07:52:19 +0300 (Sat, 03 Jul 2010) | 1 line
      
        Update comment about surrogates.
      ........
      25bc019d
  19. 01 Tem, 2010 1 kayıt (commit)
    • Ezio Melotti's avatar
      Update PyUnicode_DecodeUTF8 from RFC 2279 to RFC 3629. · 57221d02
      Ezio Melotti yazdı
      1) #8271: when a byte sequence is invalid, only the start byte and all the
         valid continuation bytes are now replaced by U+FFFD, instead of replacing
         the number of bytes specified by the start byte.
         See http://www.unicode.org/versions/Unicode5.2.0/ch03.pdf (pages 94-95);
      2) 5- and 6-bytes-long UTF-8 sequences are now considered invalid (no changes
         in behavior);
      3) Change the error messages "unexpected code byte" to "invalid start byte"
         and "invalid data" to "invalid continuation byte";
      4) Add an extensive set of tests in test_unicode;
      5) Fix test_codeccallbacks because it was failing after this change.
      57221d02
  20. 05 Haz, 2010 1 kayıt (commit)
    • Ezio Melotti's avatar
      Update PyUnicode_DecodeUTF8 from RFC 2279 to RFC 3629. · e57e50c8
      Ezio Melotti yazdı
      1) #8271: when a byte sequence is invalid, only the start byte and all the
         valid continuation bytes are now replaced by U+FFFD, instead of replacing
         the number of bytes specified by the start byte.
         See http://www.unicode.org/versions/Unicode5.2.0/ch03.pdf (pages 94-95);
      2) 5- and 6-bytes-long UTF-8 sequences are now considered invalid (no changes
         in behavior);
      3) Add code and tests to reject surrogates (U+D800-U+DFFF) as defined in
         RFC 3629, but leave it commented out since it's not backward compatible;
      4) Change the error messages "unexpected code byte" to "invalid start byte"
         and "invalid data" to "invalid continuation byte";
      5) Add an extensive set of tests in test_unicode;
      6) Fix test_codeccallbacks because it was failing after this change.
      e57e50c8
  21. 02 Tem, 2009 1 kayıt (commit)
  22. 21 Şub, 2009 2 kayıt (commit)
  23. 18 Ock, 2009 2 kayıt (commit)
    • Benjamin Peterson's avatar
      Merged revisions 68633,68648,68667,68706,68718,68720-68721,68724-68727,68739 via svnmerge from · b58dda7b
      Benjamin Peterson yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r68633 | thomas.heller | 2009-01-16 12:53:44 -0600 (Fri, 16 Jan 2009) | 3 lines
      
        Change an example in the docs to avoid a mistake when the code is copy
        pasted and changed afterwards.
      ........
        r68648 | benjamin.peterson | 2009-01-16 22:28:57 -0600 (Fri, 16 Jan 2009) | 1 line
      
        use enumerate
      ........
        r68667 | amaury.forgeotdarc | 2009-01-17 14:18:59 -0600 (Sat, 17 Jan 2009) | 3 lines
      
        #4077: No need to append \n when calling Py_FatalError
        + fix a declaration to make it match the one in pythonrun.h
      ........
        r68706 | benjamin.peterson | 2009-01-17 19:28:46 -0600 (Sat, 17 Jan 2009) | 1 line
      
        fix grammar
      ........
        r68718 | georg.brandl | 2009-01-18 04:42:35 -0600 (Sun, 18 Jan 2009) | 1 line
      
        #4976: union() and intersection() take multiple args, but talk about "the other".
      ........
        r68720 | georg.brandl | 2009-01-18 04:45:22 -0600 (Sun, 18 Jan 2009) | 1 line
      
        #4974: fix redundant mention of lists and tuples.
      ........
        r68721 | georg.brandl | 2009-01-18 04:48:16 -0600 (Sun, 18 Jan 2009) | 1 line
      
        #4914: trunc is in math.
      ........
        r68724 | georg.brandl | 2009-01-18 07:24:10 -0600 (Sun, 18 Jan 2009) | 1 line
      
        #4979: correct result range for some random functions.
      ........
        r68725 | georg.brandl | 2009-01-18 07:47:26 -0600 (Sun, 18 Jan 2009) | 1 line
      
        #4857: fix augmented assignment target spec.
      ........
        r68726 | georg.brandl | 2009-01-18 08:41:52 -0600 (Sun, 18 Jan 2009) | 1 line
      
        #4923: clarify what was added.
      ........
        r68727 | georg.brandl | 2009-01-18 12:25:30 -0600 (Sun, 18 Jan 2009) | 1 line
      
        #4986: augassigns are not expressions.
      ........
        r68739 | benjamin.peterson | 2009-01-18 15:11:38 -0600 (Sun, 18 Jan 2009) | 1 line
      
        fix test that wasn't working as expected #4990
      ........
      b58dda7b
    • Benjamin Peterson's avatar
      910f2162
  24. 20 May, 2008 2 kayıt (commit)
  25. 17 May, 2008 2 kayıt (commit)
  26. 21 Kas, 2007 1 kayıt (commit)
  27. 06 Kas, 2007 1 kayıt (commit)
    • Guido van Rossum's avatar
      Merging the py3k-pep3137 branch back into the py3k branch. · 98297ee7
      Guido van Rossum yazdı
      No detailed change log; just check out the change log for the py3k-pep3137
      branch.  The most obvious changes:
      
        - str8 renamed to bytes (PyString at the C level);
        - bytes renamed to buffer (PyBytes at the C level);
        - PyString and PyUnicode are no longer compatible.
      
      I.e. we now have an immutable bytes type and a mutable bytes type.
      
      The behavior of PyString was modified quite a bit, to make it more
      bytes-like.  Some changes are still on the to-do list.
      98297ee7
  28. 24 Eki, 2007 2 kayıt (commit)
  29. 16 Eki, 2007 1 kayıt (commit)
  30. 27 Agu, 2007 1 kayıt (commit)
  31. 17 Agu, 2007 1 kayıt (commit)