1. 01 Feb, 2010 1 commit
  2. 31 Jan, 2010 8 commits
    • Antoine Pitrou's avatar
      r77895 broke doctest. · b3d77007
      Antoine Pitrou authored
      b3d77007
    • Antoine Pitrou's avatar
      Merged revisions 77890 via svnmerge from · 905a2ffe
      Antoine Pitrou authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r77890 | antoine.pitrou | 2010-01-31 23:26:04 +0100 (dim., 31 janv. 2010) | 7 lines
      
        - Issue #6939: Fix file I/O objects in the `io` module to keep the original
          file position when calling `truncate()`.  It would previously change the
          file position to the given argument, which goes against the tradition of
          ftruncate() and other truncation APIs.  Patch by Pascal Chambon.
      ........
      905a2ffe
    • Victor Stinner's avatar
      Blocked revisions 77892 via svnmerge · 9b661e6e
      Victor Stinner authored
      ........
        r77892 | victor.stinner | 2010-01-31 23:32:15 +0100 (dim., 31 janv. 2010) | 4 lines
      
        Issue #7819: Check sys.call_tracing() arguments types.
      
        py3k was already patched by issue #3661.
      ........
      9b661e6e
    • Georg Brandl's avatar
      Fix versionadded:: 2.x merges. · 853947ae
      Georg Brandl authored
      853947ae
    • Benjamin Peterson's avatar
      Recorded merge of revisions... · 9306602f
      Benjamin Peterson authored
      Recorded merge of revisions 76050,77704,77752,77759,77761,77815,77821,77828,77834,77842,77846,77850-77851,77875,77879 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ................
        r76050 | gregory.p.smith | 2009-11-01 19:37:37 -0600 (Sun, 01 Nov 2009) | 5 lines
      
        see http://bugs.python.org/issue1006238 this merges in the following
        patch to make cross compilation of the chflags check easier:
      
         http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/python/files/python-2.6-chflags-cross.patch?rev=1.1
      ................
        r77704 | tarek.ziade | 2010-01-23 03:23:15 -0600 (Sat, 23 Jan 2010) | 1 line
      
        taking sysconfig out of distutils
      ................
        r77752 | tarek.ziade | 2010-01-25 17:19:56 -0600 (Mon, 25 Jan 2010) | 1 line
      
        switched the call order so this call works without suffering from issue #7774
      ................
        r77759 | tarek.ziade | 2010-01-26 15:21:54 -0600 (Tue, 26 Jan 2010) | 1 line
      
        reintroduced the names in Distutils for APIs that were relocated
      ................
        r77761 | tarek.ziade | 2010-01-26 16:46:15 -0600 (Tue, 26 Jan 2010) | 1 line
      
        added local get_platform/set_platform APIs in distutils.sysconfig
      ................
        r77815 | r.david.murray | 2010-01-28 15:16:33 -0600 (Thu, 28 Jan 2010) | 3 lines
      
        Change error report when the object passed to suite.addTest is not
        callable to include the repr of the invalid object.
      ................
        r77821 | mark.dickinson | 2010-01-29 11:11:39 -0600 (Fri, 29 Jan 2010) | 3 lines
      
        Issue #7788: Fix a crash produced by deleting a list slice with huge
        step value.  Patch by Marcin Bachry.
      ................
        r77828 | r.david.murray | 2010-01-29 13:35:39 -0600 (Fri, 29 Jan 2010) | 2 lines
      
        Fix typo in assertSequenceEqual docstring.
      ................
        r77834 | martin.v.loewis | 2010-01-29 18:15:44 -0600 (Fri, 29 Jan 2010) | 2 lines
      
        Add Victor Stinner.
      ................
        r77842 | mark.dickinson | 2010-01-30 04:08:33 -0600 (Sat, 30 Jan 2010) | 4 lines
      
        Issue #7767: Add new C-API function PyLong_AsLongLongAndOverflow, a
        long long variant of PyLong_AsLongAndOverflow.  Patch by Case Van
        Horsen.
      ................
        r77846 | martin.v.loewis | 2010-01-30 04:56:23 -0600 (Sat, 30 Jan 2010) | 13 lines
      
        Merged revisions 77419,77435 via svnmerge from
        svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3
      
        ........
          r77419 | benjamin.peterson | 2010-01-10 21:39:48 +0100 (So, 10 Jan 2010) | 1 line
      
          enclose path in quotes to handle paths with spaces correctly #7666
        ........
          r77435 | alexandre.vassalotti | 2010-01-12 01:36:54 +0100 (Di, 12 Jan 2010) | 2 lines
      
          Issue #1967: Add fixer for dictionary views.
        ........
      ................
        r77850 | ezio.melotti | 2010-01-30 07:08:54 -0600 (Sat, 30 Jan 2010) | 1 line
      
        Relocate a couple of stars and remove redundant backticks
      ................
        r77851 | ezio.melotti | 2010-01-30 07:27:05 -0600 (Sat, 30 Jan 2010) | 1 line
      
        Use the correct markup for args
      ................
        r77875 | matthias.klose | 2010-01-31 10:05:13 -0600 (Sun, 31 Jan 2010) | 3 lines
      
        - Update python manual page (options -B, -O0, -s, environment variables
          PYTHONDONTWRITEBYTECODE, PYTHONNOUSERSITE).
      ................
        r77879 | matthias.klose | 2010-01-31 10:46:26 -0600 (Sun, 31 Jan 2010) | 2 lines
      
        - Fix typo in os.execvp docstring.
      ................
      9306602f
    • Benjamin Peterson's avatar
    • Matthias Klose's avatar
      Merged revisions 77879 via svnmerge from · a09c54f6
      Matthias Klose authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r77879 | matthias.klose | 2010-01-31 17:46:26 +0100 (So, 31 Jan 2010) | 2 lines
      
        - Fix typo in os.execvp docstring.
      ........
      a09c54f6
    • Matthias Klose's avatar
      Merged revisions 77875 via svnmerge from · c8b16f8c
      Matthias Klose authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r77875 | matthias.klose | 2010-01-31 17:05:13 +0100 (So, 31 Jan 2010) | 3 lines
      
        - Update python manual page (options -B, -O0, -s, environment variables
          PYTHONDONTWRITEBYTECODE, PYTHONNOUSERSITE).
      ........
      c8b16f8c
  3. 30 Jan, 2010 10 commits
  4. 29 Jan, 2010 5 commits
  5. 28 Jan, 2010 3 commits
  6. 27 Jan, 2010 13 commits