Lines Matching refs:_active
92 # subprocess._active is not used on Windows and is set to None.
93 for inst in subprocess._active:
97 subprocess._active, "subprocess._active not empty"
3057 # process exited, it wouldn't be added to subprocess._active, and would
3073 # subprocess._active is not used on Windows and is set to None.
3074 self.assertIsNone(subprocess._active)
3077 self.assertIn(ident, [id(o) for o in subprocess._active])
3082 # be removed from subprocess._active, which triggered a FD and memory
3100 # subprocess._active is not used on Windows and is set to None.
3101 self.assertIsNone(subprocess._active)
3104 self.assertIn(ident, [id(o) for o in subprocess._active])
3114 # p should have been wait()ed on, and removed from the _active list
3117 # subprocess._active is not used on Windows and is set to None.
3118 self.assertIsNone(subprocess._active)
3120 self.assertNotIn(ident, [id(o) for o in subprocess._active])