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

Method __next__

src/dateutil/parser/_parser.py:189–194  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

187 return self
188
189 def __next__(self):
190 token = self.get_token()
191 if token is None:
192 raise StopIteration
193
194 return token
195
196 def next(self):
197 return self.__next__() # Python 2.x support

Callers 1

nextMethod · 0.95

Calls 1

get_tokenMethod · 0.95

Tested by

no test coverage detected