1. 13 Eyl, 2017 1 kayıt (commit)
    • Victor Stinner's avatar
      bpo-31233: socketserver.ThreadingMixIn.server_close() (#3523) · b8f4163d
      Victor Stinner yazdı
      socketserver.ThreadingMixIn now keeps a list of non-daemonic threads
      to wait until all these threads complete in server_close().
      
      Reenable test_logging skipped tests.
      
      Fix SocketHandlerTest.tearDown(): close the socket handler before
      stopping the server, so the server can join threads.
      b8f4163d
  2. 07 Eyl, 2017 1 kayıt (commit)
  3. 10 Agu, 2017 1 kayıt (commit)
  4. 16 Ara, 2016 1 kayıt (commit)
  5. 29 Haz, 2016 1 kayıt (commit)
  6. 03 Haz, 2016 2 kayıt (commit)
  7. 17 Nis, 2016 1 kayıt (commit)
  8. 13 Nis, 2016 1 kayıt (commit)
  9. 24 Şub, 2016 1 kayıt (commit)
  10. 21 Şub, 2016 1 kayıt (commit)
  11. 18 Şub, 2016 1 kayıt (commit)
  12. 10 Şub, 2016 1 kayıt (commit)
  13. 07 Şub, 2015 1 kayıt (commit)
  14. 03 Şub, 2015 1 kayıt (commit)
  15. 13 Eki, 2014 1 kayıt (commit)
  16. 02 Eyl, 2014 1 kayıt (commit)
  17. 20 Haz, 2014 2 kayıt (commit)
  18. 24 Mar, 2014 1 kayıt (commit)
  19. 20 Mar, 2014 1 kayıt (commit)
  20. 04 Tem, 2013 1 kayıt (commit)
  21. 14 Haz, 2013 1 kayıt (commit)
  22. 25 Ara, 2012 1 kayıt (commit)
  23. 18 Ara, 2012 2 kayıt (commit)
  24. 02 Eki, 2012 1 kayıt (commit)
  25. 08 Nis, 2012 2 kayıt (commit)
  26. 04 Kas, 2011 1 kayıt (commit)
  27. 29 Eki, 2011 1 kayıt (commit)
  28. 25 May, 2011 1 kayıt (commit)
    • Senthil Kumaran's avatar
      Fix closes issue #11109 - socketserver.ForkingMixIn leaves zombies, also fails… · 5e826e8a
      Senthil Kumaran yazdı
      Fix closes issue #11109 -  socketserver.ForkingMixIn leaves zombies, also fails to reap all zombies in one pass.
      
      A new method called service_action is made available in BaseServer, called by
      serve_forever loop. This useful in cases where Mixins can use it for cleanup
      action. ForkingMixin class uses service_action to collect the zombie child
      processes. Initial Patch by Justin Wark.
      5e826e8a
  29. 24 May, 2011 3 kayıt (commit)
  30. 25 Nis, 2010 2 kayıt (commit)
  31. 07 Tem, 2009 1 kayıt (commit)
    • Kristján Valur Jónsson's avatar
      http://bugs.python.org/issue6382 · a5b47cea
      Kristján Valur Jónsson yazdı
      added the shutdown_request() which can perform shutdown before calling close.  This is needed for the ForkingMixIn because different close semantics are required for child and parent process.  shutdown_request(), for TCP servers, calls socket.shutdown() and then calls close_request().  Therefore, this is not an backwards incompatible change, since subclasses that continue to override close_request() continue to work.
      a5b47cea
  32. 04 Tem, 2009 2 kayıt (commit)