1. 13 Dec, 2009 7 commits
    • R. David Murray's avatar
      Blocked revisions 73819,73821-73822,73877,73986,74098,74100 via svnmerge · fcc90691
      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
      ........
      fcc90691
    • Benjamin Peterson's avatar
      Merged revisions 76798-76799 via svnmerge from · cca22c29
      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
      ........
      cca22c29
    • Benjamin Peterson's avatar
      Merged revisions 76794 via svnmerge from · 3e4331fb
      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
      ........
      3e4331fb
    • Antoine Pitrou's avatar
      Blocked revisions 76791 via svnmerge · 029eb1f8
      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)
      ........
      029eb1f8
    • Benjamin Peterson's avatar
      Merged revisions 76785 via svnmerge from · e7b1bcd7
      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
      ........
      e7b1bcd7
    • Lars Gustäbel's avatar
      Blocked revisions 76780 via svnmerge · 39d3d755
      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.
      ........
      39d3d755
    • Benjamin Peterson's avatar
      Merged revisions 76774 via svnmerge from · d2b201a3
      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
      ........
      d2b201a3
  2. 12 Dec, 2009 2 commits
    • Antoine Pitrou's avatar
      Blocked revisions 76763 via svnmerge · c65b3b31
      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)
      ........
      c65b3b31
    • R. David Murray's avatar
      Merged revisions 76726-76727 via svnmerge from · 524f5bef
      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.
      ........
      524f5bef
  3. 11 Dec, 2009 3 commits
  4. 10 Dec, 2009 5 commits
  5. 08 Dec, 2009 4 commits
    • Ronald Oussoren's avatar
      Remove documentation for the no longer existing 'Python IDE' · a7453c20
      Ronald Oussoren authored
      from the Python.app bundle on OSX.
      
      This fixes Issue7437, the documentation contained filenames that
      broke the installer on OSX 10.3.
      a7453c20
    • Antoine Pitrou's avatar
      Blocked revisions 76708 via svnmerge · e96cc4a2
      Antoine Pitrou authored
      ........
        r76708 | antoine.pitrou | 2009-12-08 16:40:51 +0100 (mar., 08 déc. 2009) | 4 lines
      
        Issue #6986: Fix crash in the JSON C accelerator when called with the
        wrong parameter types.  Patch by Victor Stinner.
      ........
      e96cc4a2
    • Tarek Ziadé's avatar
      Blocked revisions 76704 via svnmerge · 458baae9
      Tarek Ziadé authored
      ........
        r76704 | tarek.ziade | 2009-12-08 10:39:51 +0100 (Tue, 08 Dec 2009) | 1 line
      
        removed the usage of rfc822 in favor of email.message.Message
      ........
      458baae9
    • Tarek Ziadé's avatar
      Blocked revisions 76702 via svnmerge · 2e5425fd
      Tarek Ziadé authored
      ........
        r76702 | tarek.ziade | 2009-12-08 09:56:49 +0100 (Tue, 08 Dec 2009) | 1 line
      
        Issue #7457: added a read_pkg_file method to distutils.dist.DistributionMetadata so we can read back PKG-INFO files
      ........
      2e5425fd
  6. 06 Dec, 2009 1 commit
  7. 04 Dec, 2009 3 commits
  8. 03 Dec, 2009 2 commits
  9. 02 Dec, 2009 2 commits
  10. 30 Nov, 2009 3 commits
  11. 29 Nov, 2009 2 commits
    • Tarek Ziadé's avatar
      Blocked revisions 76588 via svnmerge · 6d1b7780
      Tarek Ziadé authored
      ........
        r76588 | tarek.ziade | 2009-11-29 23:20:30 +0100 (Sun, 29 Nov 2009) | 1 line
      
        Fixed #7408: dropped group ownership checking because it relies on os-specific rules
      ........
      6d1b7780
    • Eric Smith's avatar
      Blocked revisions 76583 via svnmerge · 090cad60
      Eric Smith authored
      ........
        r76583 | eric.smith | 2009-11-29 12:40:57 -0500 (Sun, 29 Nov 2009) | 1 line
      
        Issue #3382: Make '%F' and float.__format__('F') convert results to upper case. Much of the patch came from Mark Dickinson.
      ........
      090cad60
  12. 28 Nov, 2009 4 commits
    • Mark Dickinson's avatar
      Merged revisions 76575 via svnmerge from · 15bf682e
      Mark Dickinson authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r76575 | mark.dickinson | 2009-11-28 16:32:27 +0000 (Sat, 28 Nov 2009) | 5 lines
      
        Issue #1678380: When distinguishing between -0.0 and 0.0 in
        compiler_add_o, use copysign instead of examining the first and last
        bytes of the double.  The latter method fails for little-endian
        ARM, OABI, where doubles are little-endian but with the words swapped.
      ........
      15bf682e
    • Mark Dickinson's avatar
      Blocked revisions 76568 via svnmerge · 55cf06bc
      Mark Dickinson authored
      ........
        r76568 | mark.dickinson | 2009-11-28 13:13:13 +0000 (Sat, 28 Nov 2009) | 1 line
      
        Multiprocessing configure checks don't need LIBM
      ........
      55cf06bc
    • Mark Dickinson's avatar
      Blocked revisions 76432,76558 via svnmerge · 37e259ae
      Mark Dickinson authored
      ........
        r76432 | mark.dickinson | 2009-11-20 19:30:22 +0000 (Fri, 20 Nov 2009) | 5 lines
      
        Issue #7272:  Add configure test to detect whether sem_open works
        properly, and use this to skip test_multiprocessing on platforms
        where sem_open raises a signal.  This should fix some FreeBSD buildbot
        failures for test_multiprocessing.
      ........
        r76558 | mark.dickinson | 2009-11-28 10:44:20 +0000 (Sat, 28 Nov 2009) | 4 lines
      
        Issue #7272, continued:  don't re-use existing HAVE_BROKEN_POSIX_SEMAPHORES
        to indicate that semaphores aren't available;  define a new variable
        POSIX_SEMAPHORES_NOT_ENABLED instead.
      ........
      37e259ae
    • Mark Dickinson's avatar
      Blocked revisions 76561 via svnmerge · 26164423
      Mark Dickinson authored
      ........
        r76561 | mark.dickinson | 2009-11-28 12:30:36 +0000 (Sat, 28 Nov 2009) | 5 lines
      
        Include ieeefp.h (when available) in pyport.h instead of individually in
        Objects/floatobject.c and Objects/complexobject.c.  This should silence
        compiler warnings about implicit declaration of the 'finite' function
        on Solaris.
      ........
      26164423
  13. 27 Nov, 2009 1 commit
  14. 25 Nov, 2009 1 commit