Home | History | Annotate | Download | only in test

Lines Matching refs:_active

48         for inst in subprocess._active:
51 self.assertFalse(subprocess._active, "subprocess._active not empty")
1094 # process exited, it wouldn't be added to subprocess._active, and would
1108 self.assertIn(ident, [id(o) for o in subprocess._active])
1113 # be removed from subprocess._active, which triggered a FD and memory
1128 self.assertIn(ident, [id(o) for o in subprocess._active])
1138 # p should have been wait()ed on, and removed from the _active list
1140 self.assertNotIn(ident, [id(o) for o in subprocess._active])