1. 29 Dec, 2017 3 commits
  2. 27 Dec, 2017 1 commit
  3. 23 Dec, 2017 1 commit
  4. 22 Dec, 2017 1 commit
  5. 21 Dec, 2017 1 commit
  6. 13 Dec, 2017 2 commits
  7. 12 Dec, 2017 1 commit
  8. 10 Dec, 2017 1 commit
  9. 09 Dec, 2017 1 commit
  10. 07 Dec, 2017 1 commit
    • Nir Soffer's avatar
      [2.7] bpo-32186: Release the GIL during fstat and lseek calls (#4651) · 830daae1
      Nir Soffer authored
      In fileio, there were 3 fstat() calls and one lseek() call that did not
      release the GIL during the call. This can cause all threads to hang for
      unlimited time when using io.FileIO with inaccessible NFS server.
      
      Same issue seen in fileio exists also in fileobject, fixed in the same
      way.
      830daae1
  11. 05 Dec, 2017 1 commit
  12. 02 Dec, 2017 1 commit
  13. 30 Nov, 2017 2 commits
  14. 29 Nov, 2017 3 commits
  15. 27 Nov, 2017 1 commit
  16. 26 Nov, 2017 1 commit
  17. 25 Nov, 2017 2 commits
  18. 24 Nov, 2017 3 commits
  19. 23 Nov, 2017 3 commits
  20. 20 Nov, 2017 1 commit
  21. 19 Nov, 2017 1 commit
  22. 17 Nov, 2017 2 commits
  23. 14 Nov, 2017 1 commit
  24. 11 Nov, 2017 1 commit
    • Gregory P. Smith's avatar
      [2.7] bpo-21149: Workaround a GC finalization bug in logging. (#4368) · e84f6d38
      Gregory P. Smith authored
      * Work around a GC process finalization bug.
      
      The logging RLock instances may exist but the threading.RLock class
      itself has already been emptied causing a
      Exception TypeError: "'NoneType' object is not callable" in <function _removeHandlerRef ..."
      to be printed to stderr on process termination.
      
      This catches that exception and ignores it because there is absolutely
      nothing we can or should do about it from the context of a weakref
      handler called from the gc context.
      e84f6d38
  25. 10 Nov, 2017 1 commit
  26. 09 Nov, 2017 2 commits
  27. 08 Nov, 2017 1 commit