(cls, wconn, id)
| 699 | |
| 700 | @classmethod |
| 701 | def _test_recursion(cls, wconn, id): |
| 702 | wconn.send(id) |
| 703 | if len(id) < 2: |
| 704 | for i in range(2): |
| 705 | p = cls.Process( |
| 706 | target=cls._test_recursion, args=(wconn, id+[i]) |
| 707 | ) |
| 708 | p.start() |
| 709 | p.join() |
| 710 | |
| 711 | @warnings_helper.ignore_fork_in_thread_deprecation_warnings() |
| 712 | def test_recursion(self): |
no test coverage detected