Lines Matching full:none
53 ORIGINAL_DIR = None
79 if p._popen.poll() is not None:
92 _Popen = None
94 def __init__(self, group=None, target=None, name=None, args=(), kwargs={}):
95 assert group is None, 'group argument must be None for now'
102 self._popen = None
120 assert self._popen is None, 'cannot start a process twice'
126 if self._Popen is not None:
139 def join(self, timeout=None):
144 assert self._popen is not None, 'can only join a started process'
146 if res is not None:
156 if self._popen is None:
159 return self._popen.returncode is None
182 assert self._popen is None, 'process has already started'
199 Return exit code of process or `None` if it has yet to stop
201 if self._popen is None:
208 Return identifier (PID) of process or `None` if it has yet to start
222 elif self._popen is None:
225 if self._popen.poll() is not None:
305 self._parent_pid = None
306 self._popen = None
310 self._tempdir = None