1. 03 Jul, 2010 2 commits
    • Mark Dickinson's avatar
      Merged revisions 82476 via svnmerge from · 6e07931d
      Mark Dickinson authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r82476 | mark.dickinson | 2010-07-03 10:15:09 +0100 (Sat, 03 Jul 2010) | 1 line
      
        Fix typo in sys.float_info docs.
      ........
      6e07931d
    • Ezio Melotti's avatar
      Merged revisions 81758-81759 via svnmerge from · 86e5e17b
      Ezio Melotti authored
      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
  2. 02 Jul, 2010 5 commits
  3. 01 Jul, 2010 3 commits
  4. 30 Jun, 2010 2 commits
  5. 29 Jun, 2010 4 commits
  6. 28 Jun, 2010 3 commits
  7. 27 Jun, 2010 4 commits
    • Ronald Oussoren's avatar
      Merged revisions 82284 via svnmerge from · 68f74ba5
      Ronald Oussoren authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r82284 | ronald.oussoren | 2010-06-27 15:59:39 +0200 (Sun, 27 Jun 2010) | 4 lines
      
        Fix for Issue8883: without this patch test_urllib will fail
        when there is a bare IP address in the "Bypass proxy settings
        for these Hosts & Domains" list on MacOSX.
      ........
      68f74ba5
    • Ronald Oussoren's avatar
      Merged revisions 82150 via svnmerge from · 3d3ffd8c
      Ronald Oussoren authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r82150 | ronald.oussoren | 2010-06-22 11:32:22 +0200 (Tue, 22 Jun 2010) | 12 lines
      
        The code in _scproxy (a mac specific helper module to
        detect proxy settings) had the wrong logic for detecting
        if the checkbox 'Exclude simple hostnames' is checked. This
        checkin fixes that.
      
        As a result the test failure 'Issue8455' goes away on systems
        where the checkbox is not checked.
      
        I'm carefully avoiding saying that is fixes that issue,
        test_urllib2_localnet assumes that system proxy settings are
        empty (not just on OSX, see Issue8455 for details).
      ........
      3d3ffd8c
    • Ronald Oussoren's avatar
      Merged revisions 82276 via svnmerge from · a5dae25b
      Ronald Oussoren authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r82276 | ronald.oussoren | 2010-06-27 14:43:47 +0200 (Sun, 27 Jun 2010) | 5 lines
      
        The uuid library on OSX 10.5 seems to contain the same bug as the one
        on OSX 10.6, therefore don't use it there either.
      
        This fixes issue8621.
      ........
      a5dae25b
    • Ronald Oussoren's avatar
      Merged revisions 82272 via svnmerge from · 0bf7ea85
      Ronald Oussoren authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r82272 | ronald.oussoren | 2010-06-27 14:36:16 +0200 (Sun, 27 Jun 2010) | 8 lines
      
        Two small fixes for the support for SDKs on MacOSX:
      
        1) The code that checks if an path should be located in the SDK
           explicitly excludes /usr/local. This fixes issue9046
      
        2) The SDK variant for filtering "db_dirs_to_check" in setup.py
           was not doing anything because of a missing assignment.
      ........
      0bf7ea85
  8. 26 Jun, 2010 6 commits
  9. 25 Jun, 2010 2 commits
  10. 24 Jun, 2010 1 commit
    • Stefan Krah's avatar
      Blocked revisions 82191 via svnmerge · 69ed774f
      Stefan Krah authored
      ........
        r82191 | stefan.krah | 2010-06-24 11:33:05 +0200 (Thu, 24 Jun 2010) | 5 lines
      
        Issue #9020: The Py_IS* macros from pyctype.h should generally only be
        used with signed/unsigned char arguments. For integer arguments, EOF
        has to be handled separately.
      ........
      69ed774f
  11. 23 Jun, 2010 2 commits
  12. 22 Jun, 2010 2 commits
  13. 21 Jun, 2010 1 commit
  14. 18 Jun, 2010 1 commit
    • Jean-Paul Calderone's avatar
      Merged revisions 82075 via svnmerge from · d7d58ebf
      Jean-Paul Calderone authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r82075 | jean-paul.calderone | 2010-06-18 16:00:17 -0400 (Fri, 18 Jun 2010) | 12 lines
      
        Revert r60115
      
        This revision introduced quoting for strings containing | based
        on a misunderstanding of the commonly used quoting rules used
        on Windows.
      
        | is interpreted by cmd.exe, not by the MS C runtime argv initializer.
        It only needs to be quoted if it is part of an argument passed through
        cmd.exe.
      
        See issue1300, issue7839, and issue8972.
      ........
      d7d58ebf
  15. 17 Jun, 2010 2 commits
    • Senthil Kumaran's avatar
      Merged revisions 82047 via svnmerge from · 4fb51b4d
      Senthil Kumaran authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r82047 | senthil.kumaran | 2010-06-17 22:08:34 +0530 (Thu, 17 Jun 2010) | 3 lines
      
        Fix Issue4452 - Incorrect docstring of os.setpgrp
      ........
      4fb51b4d
    • R. David Murray's avatar
      Blocked revisions 82039 via svnmerge · af85f467
      R. David Murray authored
      ........
        r82039 | r.david.murray | 2010-06-16 21:36:52 -0400 (Wed, 16 Jun 2010) | 10 lines
      
        #8720: fix inspect regression by teaching getsourcefile about linecache.
      
        The fix for issue 4050 caused a regression:  before that fix, source
        lines in the linecache would eventually be found by inspect.  After the
        fix inspect reports an error earlier, and the source isn't found.
        The fix for the fix is to have getsourcefile look in the linecache for
        the file and return the psuedo-filename if the source is there, just as
        it already returns it if there is a PEP 302 loader.
      ........
      af85f467