1. 30 Jul, 2017 4 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 3 commits
    • 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
    • Victor Stinner's avatar
      test_multiprocessing: Fix dangling process/thread (#2850) · d7e64d99
      Victor Stinner authored
      bpo-26762: Fix more dangling processes and threads in
      test_multiprocessing:
      
      * Queue: call close() followed by join_thread()
      * Process: call join() or self.addCleanup(p.join)
      d7e64d99
    • waxmoon's avatar
      Minor typo in curses.rst (#2763) · d439d3e2
      waxmoon authored
      I found a tiny typo in the curses how-to: changed 'Thy' to 'The' on line 68.
      d439d3e2