1. 04 Aug, 2009 3 commits
  2. 03 Aug, 2009 1 commit
  3. 02 Aug, 2009 5 commits
  4. 30 Jul, 2009 2 commits
  5. 29 Jul, 2009 2 commits
    • R. David Murray's avatar
      Merged revisions 74063 via svnmerge from · 78aa3d57
      R. David Murray authored
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      NB: the news item for r73708 seems to have inadvertently been included in a
      different, unrelated merge set (r74055).  I restored it here.
      
      ................
        r74063 | alexandre.vassalotti | 2009-07-17 08:07:01 -0400 (Fri, 17 Jul 2009) | 17 lines
      
        Merged revisions 73694,73708,73738 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r73694 | jesse.noller | 2009-06-29 14:24:26 -0400 (Mon, 29 Jun 2009) | 1 line
      
          Issue 5740: multiprocessing.connection.* authkey fixes
        ........
          r73708 | jesse.noller | 2009-06-30 13:11:52 -0400 (Tue, 30 Jun 2009) | 1 line
      
          Resolves issues 5155, 5313, 5331 - bad file descriptor error with processes in processes
        ........
          r73738 | r.david.murray | 2009-06-30 22:49:10 -0400 (Tue, 30 Jun 2009) | 2 lines
      
          Make punctuation prettier and break up run-on sentence.
        ........
      ................
      78aa3d57
    • R. David Murray's avatar
      Recorded merge of revisions 74226,74249 via svnmerge from · 4f7530a5
      R. David Murray authored
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ................
        r74226 | raymond.hettinger | 2009-07-27 16:16:37 -0400 (Mon, 27 Jul 2009) | 1 line
      
        Issue 6573: Fix set.union() for cases where self is in the argument chain.
      ................
        r74249 | r.david.murray | 2009-07-29 10:12:23 -0400 (Wed, 29 Jul 2009) | 11 lines
      
        Recorded merge of revisions 74228 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        Applied in r74226.
      
        ........
          r74228 | raymond.hettinger | 2009-07-27 16:32:04 -0400 (Mon, 27 Jul 2009) | 1 line
      
          Issue 6573: Fix set.union() for cases where self is in the argument chain.
        ........
      ................
      4f7530a5
  6. 28 Jul, 2009 2 commits
    • Mark Dickinson's avatar
      Blocked revisions 74237 via svnmerge · 8a84285c
      Mark Dickinson authored
      ........
        r74237 | mark.dickinson | 2009-07-28 18:22:36 +0100 (Tue, 28 Jul 2009) | 3 lines
      
        Issue #6561:  '\d' in a regular expression should match only Unicode
        character category [Nd],  not [No].
      ........
      8a84285c
    • Mark Dickinson's avatar
      Merged revisions 74232 via svnmerge from · ad583125
      Mark Dickinson authored
      svn+ssh://pythondev@www.python.org/python/branches/py3k
      
      ................
        r74232 | mark.dickinson | 2009-07-28 17:31:03 +0100 (Tue, 28 Jul 2009) | 15 lines
      
        Merged revisions 74184,74230 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r74184 | georg.brandl | 2009-07-23 08:08:58 +0100 (Thu, 23 Jul 2009) | 1 line
      
          #6548: dont suggest existence of real and imag functions in cmath.
        ........
          r74230 | mark.dickinson | 2009-07-28 17:12:40 +0100 (Tue, 28 Jul 2009) | 4 lines
      
          Issue #6458: Reorganize cmath documentation into sections (similar to
          the way that the math documentation is organized); clarify section on
          conversions to and from polar coordinates.
        ........
      ................
      ad583125
  7. 27 Jul, 2009 2 commits
  8. 26 Jul, 2009 2 commits
  9. 22 Jul, 2009 4 commits
  10. 21 Jul, 2009 5 commits
  11. 20 Jul, 2009 4 commits
    • Brett Cannon's avatar
      Fix some minor typos in the importlib docs. · 59c965e6
      Brett Cannon authored
      59c965e6
    • Brett Cannon's avatar
      Merged revisions 74107 via svnmerge from · 53747dae
      Brett Cannon authored
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ........
        r74107 | brett.cannon | 2009-07-19 20:19:18 -0700 (Sun, 19 Jul 2009) | 8 lines
      
        Importlib's documentation said that importlib.abc.PyLoader inherited from
        importlib.abc.ResourceLoader, when in fact it did not. Fixed the ABC to inherit
        as documented.
      
        This does in introduce an backwards-incompatiblity as the code in PyLoader
        already required the single method ResourceLoader defined as an abstract
        method.
      ........
      53747dae
    • Brett Cannon's avatar
      Backport of r74103. · d7220884
      Brett Cannon authored
      d7220884
    • Brett Cannon's avatar
      Blocked revisions 74102-74103 via svnmerge · dd6739e1
      Brett Cannon authored
      ........
        r74102 | brett.cannon | 2009-07-19 16:43:45 -0700 (Sun, 19 Jul 2009) | 1 line
      
        Update importlib.test.source.test_abc_loader to new features added in Python 3.1.
      ........
        r74103 | brett.cannon | 2009-07-19 17:14:29 -0700 (Sun, 19 Jul 2009) | 7 lines
      
        Some tests in importlib.test.source.test_abc_loader were testing what happens
        when a loader is given missing or bad code object bytecode. Unfortunately an
        exception related to source paths was masking what the proper exception to test
        should be. Making the test explicitly set the environment fixed the test.
      
        The code being test was not affected.
      ........
      dd6739e1
  12. 19 Jul, 2009 3 commits
    • Senthil Kumaran's avatar
      Fix for issue5102, timeout value propages between redirects, proxy, digest and · d53445a4
      Senthil Kumaran authored
      auth handlers. Fixed tests to reflect the same.
      d53445a4
    • R. David Murray's avatar
      Merged revisions 74087 via svnmerge from · aac2df52
      R. David Murray authored
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ........
        r74087 | r.david.murray | 2009-07-18 22:22:05 -0400 (Sat, 18 Jul 2009) | 2 lines
      
        News item for issue 6070 fix that was omitted from r74058 merge.
      ........
      aac2df52
    • R. David Murray's avatar
      Merged revisions 74058 via svnmerge from · b216f233
      R. David Murray authored
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ................
        r74058 | alexandre.vassalotti | 2009-07-17 06:55:50 -0400 (Fri, 17 Jul 2009) | 36 lines
      
        Merged revisions 73870,73879,73899-73900,73905-73906 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r73870 | r.david.murray | 2009-07-06 21:06:13 -0400 (Mon, 06 Jul 2009) | 5 lines
      
          Issue 6070: when creating a compiled file, after copying the mode bits, on
          posix zap the execute bit in case it was set on the .py file, since the
          compiled files are not directly executable on posix.  Patch by Marco N.
        ........
          r73879 | r.david.murray | 2009-07-07 05:54:16 -0400 (Tue, 07 Jul 2009) | 3 lines
      
          Update issue 6070 patch to match the patch that was actually tested
          on Windows.
        ........
          r73899 | r.david.murray | 2009-07-08 21:43:41 -0400 (Wed, 08 Jul 2009) | 3 lines
      
          Conditionalize test cleanup code to eliminate traceback, which will
          hopefully reveal the real problem.
        ........
          r73900 | r.david.murray | 2009-07-08 22:06:17 -0400 (Wed, 08 Jul 2009) | 2 lines
      
          Make test work with -O.
        ........
          r73905 | r.david.murray | 2009-07-09 09:55:44 -0400 (Thu, 09 Jul 2009) | 3 lines
      
          Specify umask in execute bit test to get consistent results
          and make sure we test resetting all three execute bits.
        ........
          r73906 | r.david.murray | 2009-07-09 11:35:33 -0400 (Thu, 09 Jul 2009) | 5 lines
      
          Curdir needs to be in the path for the test to work on all buildbots.
          (I copied this from another import test, but currently this will fail if
          TESTFN ends up in /tmp...see issue 2609).
        ........
      ................
      b216f233
  13. 18 Jul, 2009 1 commit
  14. 17 Jul, 2009 1 commit
  15. 16 Jul, 2009 1 commit
    • Tarek Ziadé's avatar
      Blocked revisions 74026 via svnmerge · d6678575
      Tarek Ziadé authored
      ................
        r74026 | tarek.ziade | 2009-07-16 18:18:19 +0200 (Thu, 16 Jul 2009) | 9 lines
      
        Merged revisions 74024 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r74024 | tarek.ziade | 2009-07-16 17:35:45 +0200 (Thu, 16 Jul 2009) | 1 line
      
          #6466 refactored distutils duplicate get_versions() functions (used to get gcc/ld/dllwrap versions)
        ........
      ................
      d6678575
  16. 12 Jul, 2009 2 commits