MCPcopy Create free account
hub / github.com/ronreiter/interactive-tutorials / next

Method next

suds/sudsobject.py:188–197  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

186 return self.next()
187
188 def next(self):
189 keylist = self.keylist
190 nkeys = len(self.keylist)
191 while self.index < nkeys:
192 k = keylist[self.index]
193 self.index += 1
194 if hasattr(self.sobject, k):
195 v = getattr(self.sobject, k)
196 return (k, v)
197 raise StopIteration()
198
199 def __keylist(self, sobject):
200 keylist = sobject.__keylist__

Callers 15

__next__Method · 0.95
bootstrap.jsFile · 0.45
bootstrap.min.jsFile · 0.45
normalFunction · 0.45
inlineNormalFunction · 0.45
linkHrefFunction · 0.45
jsTokenBaseFunction · 0.45
twTokenCommentFunction · 0.45
twTokenStrongFunction · 0.45
twTokenCodeFunction · 0.45
twTokenEmFunction · 0.45
twTokenUnderlineFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected