MCPcopy Index your code
hub / github.com/python/cpython / __next__

Method __next__

Lib/multiprocessing/managers.py:1051–1052  ·  view source on GitHub ↗
(self, *args)

Source from the content-addressed store, hash-verified

1049 def __iter__(self):
1050 return self
1051 def __next__(self, *args):
1052 return self._callmethod('__next__', args)
1053 def send(self, *args):
1054 return self._callmethod('send', args)
1055 def throw(self, *args):

Callers

nothing calls this directly

Calls 1

_callmethodMethod · 0.80

Tested by

no test coverage detected