An error occurred fetching the project authors.
  1. 04 Jun, 2010 4 commits
  2. 03 Jun, 2010 4 commits
  3. 02 Jun, 2010 2 commits
  4. 30 May, 2010 2 commits
  5. 28 May, 2010 1 commit
  6. 27 May, 2010 2 commits
  7. 26 May, 2010 1 commit
  8. 25 May, 2010 2 commits
  9. 24 May, 2010 3 commits
  10. 22 May, 2010 4 commits
  11. 21 May, 2010 5 commits
  12. 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
  13. 19 May, 2010 1 commit
  14. 17 May, 2010 3 commits
  15. 15 May, 2010 1 commit
  16. 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
  17. 13 May, 2010 1 commit
  18. 11 May, 2010 2 commits