1. 30 Jul, 2017 6 commits
  2. 29 Jul, 2017 3 commits
  3. 28 Jul, 2017 8 commits
  4. 27 Jul, 2017 6 commits
  5. 26 Jul, 2017 8 commits
  6. 25 Jul, 2017 8 commits
  7. 24 Jul, 2017 1 commit
    • Victor Stinner's avatar
      test_multiprocessing detects dangling per test case (#2841) · ffb49408
      Victor Stinner authored
      bpo-26762: test_multiprocessing now detects dangling processes and
      threads per test case classes:
      
      * setUpClass()/tearDownClass() of mixin classes now check if
        multiprocessing.process._dangling or threading._dangling was
        modified to detect "dangling" processses and threads.
      * ManagerMixin.tearDownClass() now also emits a warning if it still
        has more than one active child process after 5 seconds.
      * tearDownModule() now checks for dangling processes and threads
        before sleep 500 ms. And it now only sleeps if there is a least one
        dangling process or thread.
      ffb49408