1. 16 Jul, 2008 11 commits
    • Georg Brandl's avatar
      Blocked revisions 64453,64471,64489,64527,64535,64554,64595,64702 via svnmerge · 66dcc08e
      Georg Brandl authored
      ........
        r64453 | andrew.kuchling | 2008-06-22 15:39:11 +0200 (Sun, 22 Jun 2008) | 1 line
      
        Wording fix
      ........
        r64471 | facundo.batista | 2008-06-23 01:19:14 +0200 (Mon, 23 Jun 2008) | 5 lines
      
      
        Fixing the problem stated in issue 2702 with the patch submitted
        in the issue 3165. Now cPickle does not fails with uncontrolled
        behaviour when pickling into a very deep nested structure.
      ........
        r64489 | thomas.heller | 2008-06-23 16:49:56 +0200 (Mon, 23 Jun 2008) | 2 lines
      
        Fix compilation on Windows.
      ........
        r64527 | facundo.batista | 2008-06-25 21:24:53 +0200 (Wed, 25 Jun 2008) | 9 lines
      
      
        Reverting the patch from #3165, as it broke other
        behaviours. I left the original test commented out (note
        that that test came from #2702, which seems to have a
        problem in FreeBSD and Windows, but not in Linux).
      
        I included a new test, to watch over the now-broken
        behaviour, I took it from #3179.
      ........
        r64535 | georg.brandl | 2008-06-26 20:55:37 +0200 (Thu, 26 Jun 2008) | 2 lines
      
        Add a version tag for shutdown().
      ........
        r64554 | trent.nelson | 2008-06-27 04:24:49 +0200 (Fri, 27 Jun 2008) | 3 lines
      
        Initialized merge tracking via "svnmerge" with revisions "1-64347" from
        svn+ssh://pythondev@svn.python.org/python/branches/tnelson-trunk-bsddb-47-upgrade
      ........
        r64595 | facundo.batista | 2008-06-30 03:10:55 +0200 (Mon, 30 Jun 2008) | 3 lines
      
      
        Fix #2702, with a correct accounting of recursion.
      ........
        r64702 | georg.brandl | 2008-07-04 19:22:53 +0200 (Fri, 04 Jul 2008) | 2 lines
      
        Give the pickle special methods a signature.
      ........
      66dcc08e
    • Georg Brandl's avatar
      Blocked revisions 64438-64439,64516 via svnmerge · 73526e79
      Georg Brandl authored
      ........
        r64438 | raymond.hettinger | 2008-06-21 08:39:53 +0200 (Sat, 21 Jun 2008) | 1 line
      
        Issue 3008: hex/oct/bin can show floats exactly.
      ........
        r64439 | hyeshik.chang | 2008-06-21 13:15:30 +0200 (Sat, 21 Jun 2008) | 2 lines
      
        Fix build on FreeBSD gcc.
      ........
        r64516 | raymond.hettinger | 2008-06-25 00:46:07 +0200 (Wed, 25 Jun 2008) | 1 line
      
        Revert 64424, 64438, and 64439.
      ........
      73526e79
    • Benjamin Peterson's avatar
      sys.maxint -> sys.maxsize · 8af44b1c
      Benjamin Peterson authored
      8af44b1c
    • Benjamin Peterson's avatar
      update configure again :) · e6272083
      Benjamin Peterson authored
      e6272083
    • Georg Brandl's avatar
      Blocked revisions 64424 via svnmerge · 3ccd326c
      Georg Brandl authored
      ........
        r64424 | raymond.hettinger | 2008-06-20 06:18:15 +0200 (Fri, 20 Jun 2008) | 1 line
      
        Make bin() implementation parallel oct() and hex() so that int/long subclasses can override or so that other classes can support.
      ........
      3ccd326c
    • Georg Brandl's avatar
      Merged revisions 63997 via svnmerge from · 266a2925
      Georg Brandl authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r63997 | ronald.oussoren | 2008-06-06 23:31:33 +0200 (Fri, 06 Jun 2008) | 2 lines
      
        Fix build issue on OSX 10.4
      ........
      266a2925
    • Benjamin Peterson's avatar
      update configure · 2f1eec0f
      Benjamin Peterson authored
      2f1eec0f
    • Georg Brandl's avatar
      Merged revisions 63955 via svnmerge from · e73e5211
      Georg Brandl authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r63955 | ronald.oussoren | 2008-06-05 14:58:24 +0200 (Thu, 05 Jun 2008) | 20 lines
      
        MacOS X: Enable 4-way universal builds
      
        This patch adds a new configure argument on OSX:
                --with-universal-archs=[32-bit|64-bit|all]
      
        When used with the --enable-universalsdk option this controls which
        CPU architectures are includes in the framework. The default is 32-bit,
        meaning i386 and ppc. The most useful alternative is 'all', which includes
        all 4 CPU architectures supported by MacOS X (i386, ppc, x86_64 and ppc64).
      
        This includes limited support for the Carbon bindings in 64-bit mode as well,
        limited because (a) I haven't done extensive testing and (b) a large portion
        of the Carbon API's aren't available in 64-bit mode anyway.
      
        I've also duplicated a feature of Apple's build of python: setting the
        environment variable 'ARCHFLAGS' controls the '-arch' flags used for building
        extensions using distutils.
      ........
      e73e5211
    • Georg Brandl's avatar
      Merged revisions 63828 via svnmerge from · 0ebdc50a
      Georg Brandl authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r63828 | mark.hammond | 2008-05-31 07:11:07 +0200 (Sat, 31 May 2008) | 2 lines
      
        Fix bdist_wininst --user-access-control for win2k
      ........
      0ebdc50a
    • Benjamin Peterson's avatar
      Blocked revisions 64986 via svnmerge · 09da7f68
      Benjamin Peterson authored
      ........
        r64986 | benjamin.peterson | 2008-07-15 19:44:02 -0500 (Tue, 15 Jul 2008) | 1 line
      
        disable lib2to3 in the trunk. It's broken just for 2.6
      ........
      09da7f68
    • Eric Smith's avatar
      Merged revisions 64984 via svnmerge from · 98604fb8
      Eric Smith authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r64984 | eric.smith | 2008-07-15 20:11:49 -0400 (Tue, 15 Jul 2008) | 1 line
      
        Complete issue 3083: add alternate (#) formatting to bin, oct, hex in str.format().
      ........
      98604fb8
  2. 15 Jul, 2008 12 commits
  3. 14 Jul, 2008 3 commits
    • Benjamin Peterson's avatar
      Blocked revisions 64953 via svnmerge · 701b3a5e
      Benjamin Peterson authored
      ........
        r64953 | benjamin.peterson | 2008-07-14 12:42:17 -0500 (Mon, 14 Jul 2008) | 4 lines
      
        fix test_py3kwarns
      
        The fact that this was failing and went unnoticed so long seems like a good argument for being able to enable and disble py3kwarnings through Python.
      ........
      701b3a5e
    • Benjamin Peterson's avatar
      #2512 implement the 3.0 gettext API · a1aea1a6
      Benjamin Peterson authored
      All the u* gettext variants were renamed to their
      none u* variants, since there's no point in translating
      to byte strings. I also killed off the unicode parameters
      for install
      a1aea1a6
    • Robert Schuppenies's avatar
      Merged revisions 64842,64853,64856,64945 via svnmerge from · 68f87329
      Robert Schuppenies authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r64842 | robert.schuppenies | 2008-07-10 15:43:26 +0200 (Thu, 10 Jul 2008) | 2 lines
      
        Fixed Issue3122 and extended sys.getsizeof tests for built-in types.
      ........
        r64853 | robert.schuppenies | 2008-07-10 17:24:04 +0200 (Thu, 10 Jul 2008) | 3 lines
      
        Added additional __sizeof__ implementations and addressed comments made in
        Issue3122.
      ........
        r64856 | robert.schuppenies | 2008-07-10 19:13:55 +0200 (Thu, 10 Jul 2008) | 3 lines
      
        Added garbage collector overhead and optional default return value to
        sys.getsizeof.
      ........
        r64945 | robert.schuppenies | 2008-07-14 10:42:18 +0200 (Mon, 14 Jul 2008) | 2 lines
      
        Fixed test failure on Win64 machines.
      ........
      68f87329
  4. 13 Jul, 2008 14 commits