1. 02 Eyl, 2016 1 kayıt (commit)
  2. 26 May, 2016 1 kayıt (commit)
  3. 15 Ock, 2016 1 kayıt (commit)
  4. 12 Eyl, 2015 1 kayıt (commit)
  5. 12 May, 2015 2 kayıt (commit)
  6. 07 Kas, 2014 1 kayıt (commit)
  7. 13 Nis, 2014 1 kayıt (commit)
  8. 17 Mar, 2014 1 kayıt (commit)
  9. 14 Mar, 2014 1 kayıt (commit)
  10. 08 Mar, 2014 2 kayıt (commit)
  11. 24 Şub, 2014 1 kayıt (commit)
    • Serhiy Storchaka's avatar
      Issue #19619: Blacklist non-text codecs in method API · 94ee3893
      Serhiy Storchaka yazdı
      str.encode, bytes.decode and bytearray.decode now use an
      internal API to throw LookupError for known non-text encodings,
      rather than attempting the encoding or decoding operation and
      then throwing a TypeError for an unexpected output type.
      
      The latter mechanism remains in place for third party non-text
      encodings.
      
      Backported changeset d68df99d7a57.
      94ee3893
  12. 23 Kas, 2013 3 kayıt (commit)
  13. 22 Kas, 2013 1 kayıt (commit)
    • Nick Coghlan's avatar
      Issue #19619: Blacklist non-text codecs in method API · c72e4e6d
      Nick Coghlan yazdı
      str.encode, bytes.decode and bytearray.decode now use an
      internal API to throw LookupError for known non-text encodings,
      rather than attempting the encoding or decoding operation and
      then throwing a TypeError for an unexpected output type.
      
      The latter mechanism remains in place for third party non-text
      encodings.
      c72e4e6d
  14. 10 Kas, 2013 1 kayıt (commit)
  15. 04 Tem, 2013 1 kayıt (commit)
  16. 14 Haz, 2013 1 kayıt (commit)
  17. 09 Nis, 2013 1 kayıt (commit)
  18. 16 Haz, 2012 2 kayıt (commit)
  19. 10 Kas, 2011 1 kayıt (commit)
  20. 28 Eki, 2011 1 kayıt (commit)
  21. 26 Eki, 2011 1 kayıt (commit)
  22. 02 Ock, 2011 1 kayıt (commit)
  23. 06 Ara, 2010 1 kayıt (commit)
  24. 02 Ara, 2010 1 kayıt (commit)
  25. 30 Agu, 2010 1 kayıt (commit)
  26. 21 Agu, 2010 2 kayıt (commit)
  27. 28 Tem, 2010 2 kayıt (commit)
  28. 27 Haz, 2010 1 kayıt (commit)
  29. 24 May, 2010 1 kayıt (commit)
  30. 22 May, 2010 4 kayıt (commit)
    • Victor Stinner's avatar
      Merged revisions 81474 via svnmerge from · b64d0eba
      Victor Stinner yazdı
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ................
        r81474 | victor.stinner | 2010-05-22 18:59:09 +0200 (sam., 22 mai 2010) | 20 lines
      
        Merged revisions 81471-81472 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r81471 | victor.stinner | 2010-05-22 15:37:56 +0200 (sam., 22 mai 2010) | 7 lines
      
          Issue #6268: More bugfixes about BOM, UTF-16 and UTF-32
      
           * Fix seek() method of codecs.open(), don't write the BOM twice after seek(0)
           * Fix reset() method of codecs, UTF-16, UTF-32 and StreamWriter classes
           * test_codecs: use "w+" mode instead of "wt+". "t" mode is not supported by
             Solaris or Windows, but does it really exist? I found it the in the issue.
        ........
          r81472 | victor.stinner | 2010-05-22 15:44:25 +0200 (sam., 22 mai 2010) | 4 lines
      
          Fix my last commit (r81471) about codecs
      
          Rememder: don't touch the code just before a commit
        ........
      ................
      b64d0eba
    • Victor Stinner's avatar
      Merged revisions 81471-81472 via svnmerge from · a92ad7ee
      Victor Stinner yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r81471 | victor.stinner | 2010-05-22 15:37:56 +0200 (sam., 22 mai 2010) | 7 lines
      
        Issue #6268: More bugfixes about BOM, UTF-16 and UTF-32
      
         * Fix seek() method of codecs.open(), don't write the BOM twice after seek(0)
         * Fix reset() method of codecs, UTF-16, UTF-32 and StreamWriter classes
         * test_codecs: use "w+" mode instead of "wt+". "t" mode is not supported by
           Solaris or Windows, but does it really exist? I found it the in the issue.
      ........
        r81472 | victor.stinner | 2010-05-22 15:44:25 +0200 (sam., 22 mai 2010) | 4 lines
      
        Fix my last commit (r81471) about codecs
      
        Rememder: don't touch the code just before a commit
      ........
      a92ad7ee
    • Victor Stinner's avatar
      Merged revisions 81471-81472 via svnmerge from · 09c0f24f
      Victor Stinner yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r81471 | victor.stinner | 2010-05-22 15:37:56 +0200 (sam., 22 mai 2010) | 7 lines
      
        Issue #6268: More bugfixes about BOM, UTF-16 and UTF-32
      
         * Fix seek() method of codecs.open(), don't write the BOM twice after seek(0)
         * Fix reset() method of codecs, UTF-16, UTF-32 and StreamWriter classes
         * test_codecs: use "w+" mode instead of "wt+". "t" mode is not supported by
           Solaris or Windows, but does it really exist? I found it the in the issue.
      ........
        r81472 | victor.stinner | 2010-05-22 15:44:25 +0200 (sam., 22 mai 2010) | 4 lines
      
        Fix my last commit (r81471) about codecs
      
        Rememder: don't touch the code just before a commit
      ........
      09c0f24f
    • Victor Stinner's avatar
      Fix my last commit (r81471) about codecs · 54b40ee9
      Victor Stinner yazdı
      Rememder: don't touch the code just before a commit
      54b40ee9