MCPcopy Create free account
hub / github.com/dateutil/dateutil / isword

Method isword

src/dateutil/parser/_parser.py:204–206  ·  view source on GitHub ↗

Whether or not the next character is part of a word

(cls, nextchar)

Source from the content-addressed store, hash-verified

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):

Callers 1

get_tokenMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected