1. 30 Nov, 2018 3 commits
  2. 29 Nov, 2018 3 commits
  3. 28 Nov, 2018 1 commit
  4. 23 Nov, 2018 1 commit
  5. 22 Nov, 2018 1 commit
  6. 21 Nov, 2018 1 commit
  7. 20 Nov, 2018 1 commit
  8. 19 Nov, 2018 1 commit
  9. 16 Nov, 2018 1 commit
  10. 15 Nov, 2018 1 commit
  11. 14 Nov, 2018 2 commits
  12. 12 Nov, 2018 1 commit
  13. 11 Nov, 2018 1 commit
  14. 10 Nov, 2018 1 commit
  15. 08 Nov, 2018 2 commits
  16. 07 Nov, 2018 3 commits
  17. 06 Nov, 2018 1 commit
  18. 05 Nov, 2018 1 commit
    • Serhiy Storchaka's avatar
      [2.7] bpo-35133: Fix mistakes when concatenate string literals on different... · 3e3e1a27
      Serhiy Storchaka authored
      [2.7] bpo-35133: Fix mistakes when concatenate string literals on different lines. (GH-10284) (GH-10335) (GH-10336)
      
      Two kind of mistakes:
      
      1. Missed space. After concatenating there is no space between words.
      
      2. Missed comma. Causes unintentional concatenating in a list of strings.
      (cherry picked from commit 34fd4c20)
      (cherry picked from commit 7054e5c80b6e98cd44e22d1bc2d7f0a94343089d)
      3e3e1a27
  19. 04 Nov, 2018 1 commit
  20. 03 Nov, 2018 1 commit
  21. 02 Nov, 2018 1 commit
  22. 01 Nov, 2018 1 commit
  23. 31 Oct, 2018 1 commit
  24. 30 Oct, 2018 1 commit
  25. 29 Oct, 2018 3 commits
  26. 28 Oct, 2018 2 commits
  27. 27 Oct, 2018 2 commits
  28. 26 Oct, 2018 1 commit
    • Denis Ledoux's avatar
      bpo-35017, socketserver: don't accept request after shutdown (GH-9952) (GH-10129) · 6f97a50c
      Denis Ledoux authored
      Prior to this revision, after the shutdown of a `BaseServer`,
      the server accepted a last single request
      if it was sent between the server socket polling
      and the polling timeout.
      
      This can be problematic for instance for a server restart
      for which you do not want to interrupt the service,
      by not closing the listening socket during the restart.
      One request failed because of this behavior.
      
      Note that only one request failed,
      following requests were not accepted, as expected.
      
      (cherry picked from commit 10cb3760)
      6f97a50c