1. 22 Sep, 2012 1 commit
  2. 10 Sep, 2012 1 commit
  3. 11 Sep, 2012 3 commits
  4. 09 Sep, 2012 2 commits
  5. 08 Sep, 2012 1 commit
  6. 03 Sep, 2012 1 commit
  7. 02 Sep, 2012 1 commit
  8. 09 Sep, 2012 3 commits
  9. 05 Sep, 2012 1 commit
    • Antoine Pitrou's avatar
      Issue #13992: The trashcan mechanism is now thread-safe. This eliminates · 2b0218a2
      Antoine Pitrou authored
      sporadic crashes in multi-thread programs when several long deallocator
      chains ran concurrently and involved subclasses of built-in container
      types.
      
      Because of this change, a couple extension modules compiled for 3.2.4
      (those which use the trashcan mechanism, despite it being undocumented)
      will not be loadable by 3.2.3 and earlier. However, extension modules
      compiled for 3.2.3 and earlier will be loadable by 3.2.4.
      2b0218a2
  10. 08 Sep, 2012 1 commit
  11. 02 Sep, 2012 1 commit
  12. 30 Aug, 2012 1 commit
  13. 01 Sep, 2012 1 commit
  14. 30 Aug, 2012 1 commit
  15. 01 Sep, 2012 3 commits
  16. 31 Aug, 2012 2 commits
  17. 07 Sep, 2012 1 commit
  18. 27 Aug, 2012 1 commit
  19. 28 Aug, 2012 2 commits
  20. 25 Aug, 2012 10 commits
  21. 24 Aug, 2012 2 commits
    • Brett Cannon's avatar
      Issue #15316: Let exceptions raised during imports triggered by the · 12c6bda4
      Brett Cannon authored
      fromlist of __import__ propagate.
      
      The problem previously was that if something listed in fromlist didn't
      exist then that's okay. The fix for that was too broad in terms of
      catching ImportError.
      
      The trick with the solution to this issue is that the proper
      refactoring of import thanks to importlib doesn't allow for a way to
      distinguish (portably) between an ImportError because finders couldn't
      find a loader, or a loader raised the exception. In Python 3.4 the
      hope is to introduce a new exception (e.g. ModuleNotFound) to make it
      clean to differentiate why ImportError was raised.
      12c6bda4
    • Mark Dickinson's avatar
      Null merge from 3.2 · 7a54d16d
      Mark Dickinson authored
      7a54d16d