(self)
| 212 | return self.long or self.short |
| 213 | |
| 214 | def __repr__(self): |
| 215 | return 'Option(%r, %r, %r, %r)' % (self.short, self.long, |
| 216 | self.argcount, self.value) |
| 217 | |
| 218 | |
| 219 | class Required(BranchPattern): |
nothing calls this directly
no outgoing calls
no test coverage detected