@rtype: int @return: Window handle. @raise ValueError: No window handle set.
(self)
| 147 | return self.get_handle() |
| 148 | |
| 149 | def get_handle(self): |
| 150 | """ |
| 151 | @rtype: int |
| 152 | @return: Window handle. |
| 153 | @raise ValueError: No window handle set. |
| 154 | """ |
| 155 | if self.hWnd is None: |
| 156 | raise ValueError("No window handle set!") |
| 157 | return self.hWnd |
| 158 | |
| 159 | def get_pid(self): |
| 160 | """ |
no outgoing calls
no test coverage detected