1. 27 Mar, 2016 6 commits
  2. 26 Mar, 2016 4 commits
  3. 25 Mar, 2016 26 commits
  4. 24 Mar, 2016 4 commits
    • Victor Stinner's avatar
      pystate.h: fix _PyThreadState_UncheckedGet() · 4b8b86c6
      Victor Stinner authored
      Declare the function even if thread support is disabled.
      4b8b86c6
    • Victor Stinner's avatar
      Fix bug in __import__ during Python shutdown · 4f174264
      Victor Stinner authored
      Issue #26637: The importlib module now emits an ImportError rather than a
      TypeError if __import__() is tried during the Python shutdown process but
      sys.path is already cleared (set to None).
      4f174264
    • Victor Stinner's avatar
      Merge 3.5 · e091d32a
      Victor Stinner authored
      Issue #21925: warnings.formatwarning() now catches exceptions when calling
      linecache.getline() and tracemalloc.get_object_traceback() to be able to log
      ResourceWarning emitted late during the Python shutdown process.
      e091d32a
    • Victor Stinner's avatar
      warnings.formatwarning(): catch exceptions · 27461683
      Victor Stinner authored
      Issue #21925: warnings.formatwarning() now catches exceptions on
      linecache.getline(...) to be able to log ResourceWarning emitted late during
      the Python shutdown process.
      27461683