@rtype: L{Process} @return: Parent Process object. Returns C{None} if unknown.
(self)
| 209 | hFile = property(get_handle, set_handle, doc="") |
| 210 | |
| 211 | def get_process(self): |
| 212 | """ |
| 213 | @rtype: L{Process} |
| 214 | @return: Parent Process object. |
| 215 | Returns C{None} if unknown. |
| 216 | """ |
| 217 | # no way to guess! |
| 218 | return self.__process |
| 219 | |
| 220 | def set_process(self, process=None): |
| 221 | """ |
no outgoing calls
no test coverage detected