1. 20 Dec, 2009 5 commits
    • R. David Murray's avatar
      Blocked revisions 76934-76935 via svnmerge · 63704f05
      R. David Murray authored
      ........
        r76934 | r.david.murray | 2009-12-20 11:24:46 -0500 (Sun, 20 Dec 2009) | 2 lines
      
        Fix comment typo.
      ........
        r76935 | r.david.murray | 2009-12-20 11:46:06 -0500 (Sun, 20 Dec 2009) | 10 lines
      
        Issue #7376: When called with no arguments doctest was running a
        self-test.  Because of a change to the way tracebacks are printed,
        this self-test was failing.  The test is run (and passes) during normal
        regression testing.  So instead of running the failing self-test this
        patch makes doctest emit a usage message.  This is better behavior anyway
        since passing in arguments is the real reason to run doctest as a command.
      
        Bug discovery and initial patch by Florent Xicluna.
      ........
      63704f05
    • Mark Dickinson's avatar
      Blocked revisions 76930 via svnmerge · 262d3f0a
      Mark Dickinson authored
      ........
        r76930 | mark.dickinson | 2009-12-20 15:57:56 +0000 (Sun, 20 Dec 2009) | 1 line
      
        Add missing tests for PyArg_Parse* with format 'h'
      ........
      262d3f0a
    • Benjamin Peterson's avatar
      Merged revisions 76927 via svnmerge from · 25df3d74
      Benjamin Peterson authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r76927 | benjamin.peterson | 2009-12-20 09:23:22 -0600 (Sun, 20 Dec 2009) | 1 line
      
        builtin-ins -> builtins
      ........
      25df3d74
    • Mark Dickinson's avatar
      Blocked revisions 76916 via svnmerge · 7c69f9b8
      Mark Dickinson authored
      ........
        r76916 | mark.dickinson | 2009-12-20 13:58:18 +0000 (Sun, 20 Dec 2009) | 3 lines
      
        math.factorial depends on PyLong_AsLong correctly converting floats; rewrite
        it to do the conversion explicitly instead.  See issue #7550.
      ........
      7c69f9b8
    • Senthil Kumaran's avatar
      Merged revisions 76908 via svnmerge from · 8116364b
      Senthil Kumaran authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r76908 | senthil.kumaran | 2009-12-20 11:35:13 +0530 (Sun, 20 Dec 2009) | 4 lines
      
        Fix for issue 7291 - urllib2 cannot handle https with proxy requiring auth
        Refactored HTTPHandler tests and added testcase for proxy authorization.
      ........
      8116364b
  2. 19 Dec, 2009 4 commits
  3. 18 Dec, 2009 2 commits
  4. 17 Dec, 2009 1 commit
  5. 16 Dec, 2009 4 commits
  6. 15 Dec, 2009 1 commit
  7. 14 Dec, 2009 3 commits
    • R. David Murray's avatar
      Merged revisions 76840 via svnmerge from · a657b0c2
      R. David Murray authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r76840 | r.david.murray | 2009-12-14 16:57:39 -0500 (Mon, 14 Dec 2009) | 3 lines
      
        Issue #7498: make test_multiprocessing use test_support.find_unused_port
        instead of a hard coded port number in test_rapid_restart.
      ........
      a657b0c2
    • R. David Murray's avatar
      Blocked revisions 76831 via svnmerge · 0866bb92
      R. David Murray authored
      ........
        r76831 | r.david.murray | 2009-12-14 11:28:26 -0500 (Mon, 14 Dec 2009) | 6 lines
      
        Issue #1680159: unicode coercion during an 'in' operation was masking
        any errors that might occur during coercion of the left operand and
        turning them into a TypeError with a message text that was confusing in
        the given context.  This patch lets any errors through, as was already
        done during coercion of the right hand side.
      ........
      0866bb92
    • R. David Murray's avatar
      Merged revisions 76819,76830 via svnmerge from · a6fd2b2d
      R. David Murray authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r76819 | benjamin.peterson | 2009-12-13 16:15:31 -0500 (Sun, 13 Dec 2009) | 1 line
      
        avoid having to update this statement all the time
      ........
        r76830 | r.david.murray | 2009-12-13 21:50:32 -0500 (Sun, 13 Dec 2009) | 2 lines
      
        Clarify phrasing that explains that there are currently two branches.
      ........
      a6fd2b2d
  8. 13 Dec, 2009 9 commits
    • Tarek Ziadé's avatar
      Blocked revisions 76826 via svnmerge · 18e4117c
      Tarek Ziadé authored
      ........
        r76826 | tarek.ziade | 2009-12-14 00:24:13 +0100 (Mon, 14 Dec 2009) | 1 line
      
        reorganized the distutils doc a bit : the MANIFEST.in template system has its own section now. This is easier to find and follow
      ........
      18e4117c
    • Mark Dickinson's avatar
      Blocked revisions 76813 via svnmerge · 97710c11
      Mark Dickinson authored
      ........
        r76813 | mark.dickinson | 2009-12-13 21:06:06 +0000 (Sun, 13 Dec 2009) | 3 lines
      
        Issue #7492: Autoconf tests were leaving semaphore files behind.  Add
        sem_unlink calls to delete those semaphore files.
      ........
      97710c11
    • R. David Murray's avatar
      Blocked revisions 73819,73821-73822,73877,73986,74098,74100 via svnmerge · 9c536026
      R. David Murray authored
      All of these are descendants of the issue 6267 patch (r73638), which was
      an enhancement patch and thus blocked from backport (even though it may
      have contained a couple fixes...)
      
      ........
        r73819 | kristjan.jonsson | 2009-07-03 19:07:07 -0400 (Fri, 03 Jul 2009) | 2 lines
      
        http://bugs.python.org/issue6381
        some platforms may raise ENOTCONN if the stack has disconnected the socket on behalf of the peer.
      ........
        r73821 | kristjan.jonsson | 2009-07-03 19:26:02 -0400 (Fri, 03 Jul 2009) | 2 lines
      
        http://bugs.python.org/issue6267
        Incorrect exception handling for xmlrp client retry
      ........
        r73822 | kristjan.jonsson | 2009-07-03 19:29:50 -0400 (Fri, 03 Jul 2009) | 2 lines
      
        http://bugs.python.org/issue6267
        Incorrect exception handling for xmlrpc client retry
      ........
        r73877 | kristjan.jonsson | 2009-07-07 05:01:34 -0400 (Tue, 07 Jul 2009) | 2 lines
      
        http://bugs.python.org/issue6382
        added the shutdown_request() which can perform shutdown before calling close.  This is needed for the ForkingMixIn because different close semantics are required for child and parent process.  shutdown_request(), for TCP servers, calls socket.shutdown() and then calls close_request().  Therefore, this is not an backwards incompatible change, since subclasses that continue to override close_request() continue to work.
      ........
        r73986 | kristjan.jonsson | 2009-07-12 18:42:08 -0400 (Sun, 12 Jul 2009) | 2 lines
      
        http://bugs.python.org/issue6267
        Add more tests for the xlmrpc.ServerProxy
      ........
        r74098 | kristjan.jonsson | 2009-07-19 18:14:00 -0400 (Sun, 19 Jul 2009) | 2 lines
      
        http://bugs.python.org/issue6499
        zlib/gzip may not be present for all builds.  Make xmlrpclib gracefully not supporg gzip encoding in this case
      ........
        r74100 | kristjan.jonsson | 2009-07-19 18:35:44 -0400 (Sun, 19 Jul 2009) | 2 lines
      
        http://bugs.python.org/issue6499
        gzip.GzipFile may not exist as a parent class
      ........
      9c536026
    • Benjamin Peterson's avatar
      Merged revisions 76798-76799 via svnmerge from · 9567112e
      Benjamin Peterson authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r76798 | benjamin.peterson | 2009-12-13 11:29:16 -0600 (Sun, 13 Dec 2009) | 1 line
      
        make StringIO like other file objects in that readline(-1) has no effect #7348
      ........
        r76799 | benjamin.peterson | 2009-12-13 11:31:31 -0600 (Sun, 13 Dec 2009) | 1 line
      
        add NEWS note
      ........
      9567112e
    • Benjamin Peterson's avatar
      Merged revisions 76794 via svnmerge from · d76e711e
      Benjamin Peterson authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r76794 | benjamin.peterson | 2009-12-13 10:36:53 -0600 (Sun, 13 Dec 2009) | 2 lines
      
        fix the ignoring of __cmp__ method on metaclasses #7491
      ........
      d76e711e
    • Antoine Pitrou's avatar
      Blocked revisions 76791 via svnmerge · 62926f0b
      Antoine Pitrou authored
      ........
        r76791 | antoine.pitrou | 2009-12-13 17:18:14 +0100 (dim., 13 déc. 2009) | 5 lines
      
        Add NEWS entry as per RDM's suggestion (the bug was actually present
        in 2.7 alpha 1)
      ........
      62926f0b
    • Benjamin Peterson's avatar
      Merged revisions 76785 via svnmerge from · 6e363a5f
      Benjamin Peterson authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r76785 | benjamin.peterson | 2009-12-13 08:18:08 -0600 (Sun, 13 Dec 2009) | 1 line
      
        add 2.6.x point releases
      ........
      6e363a5f
    • Lars Gustäbel's avatar
      Blocked revisions 76780 via svnmerge · ac4f9428
      Lars Gustäbel authored
      ........
        r76780 | lars.gustaebel | 2009-12-13 12:32:27 +0100 (Sun, 13 Dec 2009) | 21 lines
      
        Issue #7357: No longer suppress fatal extraction errors by
        default.
      
        TarFile's errorlevel argument controls how errors are
        handled that occur during extraction. There are three
        possible levels 0, 1 and 2. If errorlevel is set to 1 or 2
        fatal errors (e.g. a full filesystem) are raised as
        exceptions. If it is set to 0, which is the default value,
        extraction errors are suppressed, and error messages are
        written to the debug log instead. But, if the debug log is
        not activated, which is the default as well, all these
        errors go unnoticed.
      
        The original intention was to imitate GNU tar which tries
        to extract as many members as possible instead of stopping
        on the first error. It turns out that this is no good
        default behaviour for a tar library. This patch simply
        changes the default value for the errorlevel argument from
        0 to 1, so that fatal extraction errors are raised as
        EnvironmentError exceptions.
      ........
      ac4f9428
    • Benjamin Peterson's avatar
      Merged revisions 76774 via svnmerge from · 011e9f17
      Benjamin Peterson authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r76774 | benjamin.peterson | 2009-12-12 18:54:15 -0600 (Sat, 12 Dec 2009) | 1 line
      
        account for PyObject_IsInstance's new ability to fail
      ........
      011e9f17
  9. 12 Dec, 2009 2 commits
    • Antoine Pitrou's avatar
      Blocked revisions 76763 via svnmerge · e2d6700d
      Antoine Pitrou authored
      ........
        r76763 | antoine.pitrou | 2009-12-12 20:13:08 +0100 (sam., 12 déc. 2009) | 7 lines
      
        Issue #7466: segmentation fault when the garbage collector is called
        in the middle of populating a tuple.  Patch by Florent Xicluna.
      
        (note: no NEWS entry for trunk since the bug was introduced in 2.7/3.1)
      ........
      e2d6700d
    • R. David Murray's avatar
      Merged revisions 76726-76727 via svnmerge from · 07ca761f
      R. David Murray authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      This merge changes the test harness to manually do the socket
      shutdown that was made automatic in trunk by enhancement patch r73638
      (issue 6267).  Patch modification by Scott Dial.
      
      ........
        r76726 | r.david.murray | 2009-12-09 10:15:31 -0500 (Wed, 09 Dec 2009) | 6 lines
      
        Issue 5949: fixed IMAP4_SSL hang when the IMAP server response is
        missing proper end-of-line termination.  Patch and tests by
        Scott Dial.  The new tests include a test harness which will
        make it easier to add additional tests.
      ........
        r76727 | r.david.murray | 2009-12-09 11:41:39 -0500 (Wed, 09 Dec 2009) | 2 lines
      
        Skip new imaplib SSL tests if ssl is not available.
      ........
      07ca761f
  10. 11 Dec, 2009 3 commits
  11. 10 Dec, 2009 5 commits
  12. 08 Dec, 2009 1 commit