Whether the next character is part of a number
(cls, nextchar)
| 207 | |
| 208 | @classmethod |
| 209 | def isnum(cls, nextchar): |
| 210 | """ Whether the next character is part of a number """ |
| 211 | return nextchar.isdigit() |
| 212 | |
| 213 | @classmethod |
| 214 | def isspace(cls, nextchar): |