1. 26 Feb, 2018 4 commits
  2. 25 Feb, 2018 9 commits
  3. 24 Feb, 2018 8 commits
  4. 23 Feb, 2018 7 commits
  5. 22 Feb, 2018 8 commits
  6. 21 Feb, 2018 3 commits
  7. 20 Feb, 2018 1 commit
    • Eric Snow's avatar
      bpo-32604: Swap threads only if the interpreter is different. (gh-5778) · f53d9f27
      Eric Snow authored
      The CPython runtime assumes that there is a one-to-one relationship (for a given interpreter) between PyThreadState and OS threads. Sending and receiving on a channel in the same interpreter was causing crashes because of this (specifically due to a check in PyThreadState_Swap()). The solution is to not switch threads if the interpreter is the same.
      f53d9f27