Returns the nth space separated word
(self, n)
| 138 | |
| 139 | # Easy ways to get information |
| 140 | def arg(self, n): |
| 141 | """Returns the nth space separated word""" |
| 142 | try: |
| 143 | return self.args[n] |
| 144 | except IndexError: |
| 145 | return "" |
| 146 | |
| 147 | def rest(self, n): |
| 148 | """Returns everything from and after arg(n)""" |
no outgoing calls
no test coverage detected