1. 14 Dec, 2007 4 commits
    • Bill Janssen's avatar
      update to fix leak in SSL code · 54cc54c1
      Bill Janssen authored
      54cc54c1
    • Mark Summerfield's avatar
    • Mark Summerfield's avatar
    • Christian Heimes's avatar
      Merged revisions 59465-59487 via svnmerge from · 38053211
      Christian Heimes authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r59467 | georg.brandl | 2007-12-11 17:32:49 +0100 (Tue, 11 Dec 2007) | 2 lines
      
        Add another GHOP contributor.
      ........
        r59468 | kurt.kaiser | 2007-12-11 20:35:12 +0100 (Tue, 11 Dec 2007) | 3 lines
      
        IDLE_tabbedpages.071101.patch Tal Einat
        Cosmetic changes, one bug.  Remove tabpage.py, replaced by tabbedpages.py
      ........
        r59471 | gerhard.haering | 2007-12-11 22:07:40 +0100 (Tue, 11 Dec 2007) | 9 lines
      
        Forward-port of commit 59184.
      
        - Backported a workaround for a bug in SQLite 3.2.x/3.3.x versions where a
          statement recompilation with no bound parameters lead to a segfault
        - Backported a fix necessary because of an SQLite API change in version
          3.5.
          This prevents segfaults when executing empty queries, like our test suite
          does
      ........
        r59475 | christian.heimes | 2007-12-12 19:09:06 +0100 (Wed, 12 Dec 2007) | 1 line
      
        Fixed a nasty problem in the xxmodule.c
      ........
        r59478 | raymond.hettinger | 2007-12-13 01:08:37 +0100 (Thu, 13 Dec 2007) | 1 line
      
        Fix bug 1604. deque.__init__() did not clear existing contents like list.__init__. Not a backport candidate.
      ........
        r59480 | alexandre.vassalotti | 2007-12-13 18:58:23 +0100 (Thu, 13 Dec 2007) | 2 lines
      
        Fix issue #1313119: urlparse "caches" parses regardless of encoding
      ........
        r59482 | christian.heimes | 2007-12-13 20:23:16 +0100 (Thu, 13 Dec 2007) | 1 line
      
        Fixed bug #1613: Makefile's VPATH feature is broken
      ........
        r59484 | guido.van.rossum | 2007-12-13 21:50:10 +0100 (Thu, 13 Dec 2007) | 3 lines
      
        Patch #1608.  Someone with access to autoconf 2.61 or higher needs to
        run it and check in the resulting configure file.
      ........
        r59485 | thomas.heller | 2007-12-13 22:20:29 +0100 (Thu, 13 Dec 2007) | 1 line
      
        Ran autoconf.
      ........
        r59486 | raymond.hettinger | 2007-12-13 23:55:52 +0100 (Thu, 13 Dec 2007) | 1 line
      
        Simplify implementation of __replace__()
      ........
        r59487 | raymond.hettinger | 2007-12-14 00:52:59 +0100 (Fri, 14 Dec 2007) | 1 line
      
        Small speedup
      ........
      38053211
  2. 13 Dec, 2007 1 commit
  3. 12 Dec, 2007 5 commits
  4. 11 Dec, 2007 4 commits
    • Christian Heimes's avatar
    • Christian Heimes's avatar
      Issue #1587: Added instancemethod wrapper for PyCFunctions. The Python C API · a3534a6f
      Christian Heimes authored
      has gained a new type *PyInstanceMethod_Type* and the functions
      *PyInstanceMethod_Check(o)*, *PyInstanceMethod_New(func)* and
      *PyInstanceMethod_Function(im)*.
      a3534a6f
    • Christian Heimes's avatar
      Added note about 1585 to Misc/NEWS · fc5aa9d0
      Christian Heimes authored
      fc5aa9d0
    • Christian Heimes's avatar
      Merged revisions 59450-59464 via svnmerge from · b76922a7
      Christian Heimes authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r59455 | guido.van.rossum | 2007-12-10 21:42:53 +0100 (Mon, 10 Dec 2007) | 2 lines
      
        Remove a 2.2-ism.
      ........
        r59459 | christian.heimes | 2007-12-10 23:28:56 +0100 (Mon, 10 Dec 2007) | 4 lines
      
        Backport of r59456:59458 from py3k to trunk
        Issue #1580: New free format floating point representation based on "Floating-Point Printer Sample Code", by Robert G. Burger. For example repr(11./5) now returns '2.2' instead of '2.2000000000000002'.
      
        Thanks to noam for the patch! I had to modify doubledigits.c slightly to support X64 and IA64 machines on Windows. I also added the new file to the three project files.
      ........
        r59460 | guido.van.rossum | 2007-12-11 00:00:12 +0100 (Tue, 11 Dec 2007) | 4 lines
      
        Patch #1643738 by Ulisses Furquim -- make the is_tripped variable
        in signalmodule.c more robust.  Includes Martin von Loewis's suggestion
        to set is_tripped after .tripped.
      ........
        r59463 | kurt.kaiser | 2007-12-11 01:04:57 +0100 (Tue, 11 Dec 2007) | 2 lines
      
        format_paragraph_event wasn't returning 'break'
      ........
        r59464 | christian.heimes | 2007-12-11 01:54:34 +0100 (Tue, 11 Dec 2007) | 3 lines
      
        The new float repr causes too much trouble and pain. I'm disabling the feature until we have sorted out the issues on all machines. 64bit machines seem to have issues and Guido has reported even worse.
        Guido: It's pretty bad actually -- repr(1e5) comes out as '1.0'... Ditto for
        repr(1eN) for most N... Both in 2.6 and in 3.0...
      ........
      b76922a7
  5. 10 Dec, 2007 10 commits
  6. 09 Dec, 2007 4 commits
  7. 08 Dec, 2007 12 commits