After a new child process has been forked, release the module-level lock. This should be used in conjunction with _prepareFork().
()
| 240 | raise |
| 241 | |
| 242 | def _afterFork(): |
| 243 | """ |
| 244 | After a new child process has been forked, release the module-level lock. |
| 245 | |
| 246 | This should be used in conjunction with _prepareFork(). |
| 247 | """ |
| 248 | _lock.release() |
| 249 | |
| 250 | |
| 251 | # Prevent a held logging lock from blocking a child from logging. |
nothing calls this directly
no test coverage detected
searching dependent graphs…