(self, source, error=DocoptExit)
| 282 | class Tokens(list): |
| 283 | |
| 284 | def __init__(self, source, error=DocoptExit): |
| 285 | self += source.split() if hasattr(source, 'split') else source |
| 286 | self.error = error |
| 287 | |
| 288 | @staticmethod |
| 289 | def from_pattern(source): |
nothing calls this directly
no outgoing calls
no test coverage detected