1. 03 Jun, 2010 2 commits
    • Lars Gustäbel's avatar
      Merged revisions 81665 via svnmerge from · 547f808e
      Lars Gustäbel authored
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ................
        r81665 | lars.gustaebel | 2010-06-03 12:11:52 +0200 (Thu, 03 Jun 2010) | 11 lines
      
        Merged revisions 81663 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r81663 | lars.gustaebel | 2010-06-03 11:56:22 +0200 (Thu, 03 Jun 2010) | 4 lines
      
          Issue #8833: tarfile created hard link entries with a size
          field != 0 by mistake. The associated testcase did not
          expose this bug because it was broken too.
        ........
      ................
      547f808e
    • R. David Murray's avatar
      Merged revisions 81660 via svnmerge from · d2d08c68
      R. David Murray authored
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ................
        r81660 | r.david.murray | 2010-06-02 21:58:28 -0400 (Wed, 02 Jun 2010) | 25 lines
      
        Fix Charset.body_encode to encode to output_charset before calling base64mime.
      
        This means that what gets encoded in base64 is the encoded version of the
        unicode payload.  This bug was revealed by a forward port of the tests from
        Issue 1368247, but the fix was completely different.
      
        Note that the merge is only of the tests, the doc changes were inappropriate
        since email5 expects unicode, not bytes.  I'm also not convinced that
        quopri works correctly in email5, but that's a different issue.
      
        Merged revisions 81658 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r81658 | r.david.murray | 2010-06-02 18:03:15 -0400 (Wed, 02 Jun 2010) | 9 lines
      
          #1368247: make set_charset/MIMEText automatically encode unicode _payload.
      
          Fixes (mysterious, to the end user) UnicodeErrors when using utf-8 as
          the charset and unicode as the _text argument.  Also makes the way in
          which unicode gets encoded to quoted printable for other charsets more
          sane (it only worked by accident previously).  The _payload now is encoded
          to the charset.output_charset if it is unicode.
        ........
      ................
      d2d08c68
  2. 02 Jun, 2010 3 commits
  3. 01 Jun, 2010 5 commits
  4. 31 May, 2010 3 commits
  5. 29 May, 2010 4 commits
  6. 28 May, 2010 1 commit
    • Victor Stinner's avatar
      Blocked revisions 81588 via svnmerge · c4e58afa
      Victor Stinner authored
      ........
        r81588 | victor.stinner | 2010-05-28 23:55:10 +0200 (ven., 28 mai 2010) | 3 lines
      
        Issue #8837: Remove "O?" format of PyArg_Parse*() functions. The format is no
        used anymore and it was never documented.
      ........
      c4e58afa
  7. 27 May, 2010 3 commits
  8. 26 May, 2010 5 commits
  9. 25 May, 2010 5 commits
  10. 24 May, 2010 1 commit
  11. 22 May, 2010 4 commits
    • Benjamin Peterson's avatar
      Merged revisions 81481 via svnmerge from · 86279381
      Benjamin Peterson authored
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ................
        r81481 | benjamin.peterson | 2010-05-22 13:59:24 -0500 (Sat, 22 May 2010) | 20 lines
      
        Merged revisions 81479 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ................
          r81479 | benjamin.peterson | 2010-05-22 13:52:21 -0500 (Sat, 22 May 2010) | 13 lines
      
          Merged revisions 80937,81478 via svnmerge from
          svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3
      
          ........
            r80937 | benjamin.peterson | 2010-05-07 14:10:58 -0500 (Fri, 07 May 2010) | 1 line
      
            remove redundant unicode call
          ........
            r81478 | benjamin.peterson | 2010-05-22 13:47:39 -0500 (Sat, 22 May 2010) | 1 line
      
            ensure doctests have some future_features
          ........
        ................
      ................
      86279381
    • Mark Dickinson's avatar
      Merged revisions 80016 via svnmerge from · 093b25d1
      Mark Dickinson authored
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ................
        r80016 | mark.dickinson | 2010-04-12 22:00:59 +0100 (Mon, 12 Apr 2010) | 29 lines
      
        Merged revisions 80013-80015 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r80013 | mark.dickinson | 2010-04-12 20:25:32 +0100 (Mon, 12 Apr 2010) | 14 lines
      
          Issue #7355: Various improvements to struct module documentation.
      
           - note early on that the result of struct.pack includes padding
             bytes by default
      
           - add examples showing how order of struct fields can affect size
             (due to padding)
      
           - better headers and references; introduction to format strings
      
           - integrate packing notes into table
      
          Many thanks to Meador Inge for the patch.
        ........
          r80014 | mark.dickinson | 2010-04-12 20:46:20 +0100 (Mon, 12 Apr 2010) | 1 line
      
          Rewrap some long lines in struct module doc source.
        ........
          r80015 | mark.dickinson | 2010-04-12 21:38:36 +0100 (Mon, 12 Apr 2010) | 1 line
      
          More struct doc tweaks.
        ........
      ................
      093b25d1
    • Victor Stinner's avatar
      Merged revisions 81474 via svnmerge from · b64d0eba
      Victor Stinner authored
      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 81461 via svnmerge from · 37b82006
      Victor Stinner authored
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ................
        r81461 | victor.stinner | 2010-05-22 04:16:27 +0200 (sam., 22 mai 2010) | 10 lines
      
        Merged revisions 81459 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r81459 | victor.stinner | 2010-05-22 04:11:07 +0200 (sam., 22 mai 2010) | 3 lines
      
          Issue #6268: Fix seek() method of codecs.open(), don't read the BOM twice
          after seek(0)
        ........
      ................
      37b82006
  12. 21 May, 2010 4 commits