Return True if this is the parent process.
(self)
| 209 | self.call_selector = call_selector |
| 210 | |
| 211 | def _is_parent(self): |
| 212 | """Return True if this is the parent process.""" |
| 213 | return os.getpid() == self.parent_pid |
| 214 | |
| 215 | def _is_thread_active(self): |
| 216 | """Return True if the read thread should be still active.""" |
no outgoing calls
no test coverage detected