An error occurred fetching the project authors.
  1. 27 May, 2010 2 commits
  2. 26 May, 2010 1 commit
  3. 25 May, 2010 2 commits
  4. 24 May, 2010 3 commits
  5. 22 May, 2010 4 commits
  6. 21 May, 2010 5 commits
  7. 20 May, 2010 1 commit
    • Brett Cannon's avatar
      Turned out that if you used explicit relative import syntax · eb3cd301
      Brett Cannon authored
      (e.g. from .os import sep) and it failed, import would still try the implicit
      relative import semantics of an absolute import (from os import sep). That's
      not right, so when level is negative, only do explicit relative import
      semantics.
      
      Fixes issue #7902. Thanks to Meador Inge for the patch.
      eb3cd301
  8. 19 May, 2010 1 commit
  9. 17 May, 2010 3 commits
  10. 15 May, 2010 1 commit
  11. 14 May, 2010 1 commit
    • 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
  12. 13 May, 2010 1 commit
  13. 11 May, 2010 2 commits
  14. 10 May, 2010 2 commits
  15. 09 May, 2010 3 commits
  16. 08 May, 2010 8 commits