(self)
| 455 | |
| 456 | class ForkAwareLocal(threading.local): |
| 457 | def __init__(self): |
| 458 | register_after_fork(self, lambda obj : obj.__dict__.clear()) |
| 459 | def __reduce__(self): |
| 460 | return type(self), () |
| 461 |
nothing calls this directly
no test coverage detected