1. 29 Eki, 2006 1 kayıt (commit)
  2. 14 Nis, 2006 2 kayıt (commit)
  3. 18 Mar, 2006 1 kayıt (commit)
  4. 16 Mar, 2006 1 kayıt (commit)
  5. 15 Mar, 2006 1 kayıt (commit)
  6. 06 Mar, 2006 1 kayıt (commit)
  7. 25 Ara, 2005 1 kayıt (commit)
  8. 18 Eyl, 2005 1 kayıt (commit)
  9. 01 Eyl, 2005 1 kayıt (commit)
  10. 24 Agu, 2005 1 kayıt (commit)
  11. 20 Tem, 2005 1 kayıt (commit)
  12. 21 Nis, 2005 2 kayıt (commit)
    • Walter Dörwald's avatar
      Fix comment. · a4eb2d56
      Walter Dörwald yazdı
      a4eb2d56
    • Walter Dörwald's avatar
      If the data read from the bytestream in readline() ends in a '\r' read one more · bc8e642c
      Walter Dörwald yazdı
      byte, even if the user has passed a size parameter. This extra byte shouldn't
      cause a buffer overflow in the tokenizer. The original plan was to return a line
      ending in '\r', which might be recognizable as a complete line and skip any '\n'
      that was read afterwards. Unfortunately this didn't work, as the tokenizer only
      recognizes '\n' as line ends, which in turn lead to joined lines and
      SyntaxErrors, so this special treatment of a split '\r\n' has been dropped. (It
      can only happen with a temporarily exhausted bytestream now anyway.)
      Fixes parts of SF bugs #1163244 and #1175396.
      bc8e642c
  13. 04 Nis, 2005 2 kayıt (commit)
    • Walter Dörwald's avatar
      Fix typos. · 714f8782
      Walter Dörwald yazdı
      714f8782
    • Walter Dörwald's avatar
      Fix for SF bug #1175396: readline() will now read one more character, if · 7a6dc139
      Walter Dörwald yazdı
      the last character read is "\r" (and size is None, i.e. we're allowed to
      call read() multiple times), so that we can return the correct line ending
      (this additional character might be a "\n").
      
      If the stream is temporarily exhausted, we might return the wrong line ending
      (if the last character read is "\r" and the next one (after the byte stream
      provides more data) is "\n", but at least the atcr member ensure that we
      get the correct number of lines (i.e. this "\n" will not be treated as
      another line ending.)
      7a6dc139
  14. 16 Mar, 2005 1 kayıt (commit)
  15. 14 Mar, 2005 2 kayıt (commit)
  16. 08 Mar, 2005 1 kayıt (commit)
  17. 10 Ock, 2005 1 kayıt (commit)
  18. 21 Ara, 2004 1 kayıt (commit)
  19. 17 Eki, 2004 1 kayıt (commit)
  20. 07 Eyl, 2004 1 kayıt (commit)
    • Walter Dörwald's avatar
      SF patch #998993: The UTF-8 and the UTF-16 stateful decoders now support · 69652035
      Walter Dörwald yazdı
      decoding incomplete input (when the input stream is temporarily exhausted).
      codecs.StreamReader now implements buffering, which enables proper
      readline support for the UTF-16 decoders. codecs.StreamReader.read()
      has a new argument chars which specifies the number of characters to
      return. codecs.StreamReader.readline() and codecs.StreamReader.readlines()
      have a new argument keepends. Trailing "\n"s will be stripped from the lines
      if keepends is false. Added C APIs PyUnicode_DecodeUTF8Stateful and
      PyUnicode_DecodeUTF16Stateful.
      69652035
  21. 26 Şub, 2004 1 kayıt (commit)
  22. 02 Şub, 2003 1 kayıt (commit)
  23. 30 Ara, 2002 1 kayıt (commit)
  24. 12 Ara, 2002 1 kayıt (commit)
  25. 19 Kas, 2002 1 kayıt (commit)
  26. 06 Kas, 2002 1 kayıt (commit)
  27. 02 Eyl, 2002 1 kayıt (commit)
  28. 04 Haz, 2002 1 kayıt (commit)
  29. 01 Haz, 2002 1 kayıt (commit)
  30. 05 Mar, 2002 1 kayıt (commit)
  31. 19 Eyl, 2001 1 kayıt (commit)
  32. 18 Eyl, 2001 1 kayıt (commit)
  33. 02 Agu, 2001 1 kayıt (commit)
  34. 31 Tem, 2001 1 kayıt (commit)
  35. 29 May, 2001 1 kayıt (commit)
  36. 16 May, 2001 1 kayıt (commit)