()
| 66 | current_process()._children = weakref.WeakKeyDictionary() |
| 67 | |
| 68 | def active_children(): |
| 69 | children = current_process()._children |
| 70 | for p in list(children): |
| 71 | if not p.is_alive(): |
| 72 | children.pop(p, None) |
| 73 | return list(children) |
| 74 | |
| 75 | def freeze_support(): |
| 76 | pass |
nothing calls this directly
no test coverage detected
searching dependent graphs…