Whether or not the next character is part of a word
(cls, nextchar)
| 202 | |
| 203 | @classmethod |
| 204 | def isword(cls, nextchar): |
| 205 | """ Whether or not the next character is part of a word """ |
| 206 | return nextchar.isalpha() |
| 207 | |
| 208 | @classmethod |
| 209 | def isnum(cls, nextchar): |