(self)
| 129 | self.status = "waiting" |
| 130 | |
| 131 | def isWaiting(self): |
| 132 | if self.result or self.error or time() > self.waitUntil: |
| 133 | return False |
| 134 | |
| 135 | return True |
| 136 | |
| 137 | def isTextual(self): |
| 138 | """ returns if text is written on the captcha """ |
no outgoing calls
no test coverage detected