(fd, parent_sentinel)
| 124 | |
| 125 | |
| 126 | def _main(fd, parent_sentinel): |
| 127 | with os.fdopen(fd, 'rb', closefd=True) as from_parent: |
| 128 | process.current_process()._inheriting = True |
| 129 | try: |
| 130 | preparation_data = reduction.pickle.load(from_parent) |
| 131 | prepare(preparation_data) |
| 132 | self = reduction.pickle.load(from_parent) |
| 133 | finally: |
| 134 | del process.current_process()._inheriting |
| 135 | return self._bootstrap(parent_sentinel) |
| 136 | |
| 137 | |
| 138 | def _check_not_importing_main(): |
no test coverage detected
searching dependent graphs…