1. 14 May, 2010 2 commits
    • Victor Stinner's avatar
    • Brett Cannon's avatar
      subprocess.Popen.__del__ referenced global objects, which is a no-no thanks to · 42a0ba7b
      Brett Cannon authored
      interpreter shutdown semantics. Same issue goes for the methods that __del__
      called. Now all the methods capture the global objects it needs as default
      values to private parameters (could have stuck them on the class object itself,
      but since the objects have nothing directly to do with the class that seemed
      wrong).
      
      There is no test as making one that works is hard. This patch was
      verified against a consistently failing test in Mercurial's test suite, though,
      so it has been tested in some regard.
      
      Closes issue #5099. Thanks to Mary Stern for the bug report and Gabriel
      Genellina for writing another patch for the same issue and attempting to write
      a test.
      42a0ba7b
  2. 13 May, 2010 10 commits
  3. 12 May, 2010 9 commits
  4. 11 May, 2010 6 commits
  5. 10 May, 2010 13 commits