1. 13 Sep, 2004 3 commits
  2. 12 Sep, 2004 5 commits
  3. 11 Sep, 2004 8 commits
  4. 10 Sep, 2004 15 commits
  5. 09 Sep, 2004 3 commits
  6. 08 Sep, 2004 5 commits
  7. 07 Sep, 2004 1 commit
    • Walter Dörwald's avatar
      SF patch #998993: The UTF-8 and the UTF-16 stateful decoders now support · 69652035
      Walter Dörwald authored
      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