Lines Matching refs:item
189 """Return the next item or raise StopAsyncIteration when exhausted."""
207 """Return the next item from the asynchronous generator.
277 'Return the next item from the iterator. When exhausted, raise StopIteration'
327 """Return the next item from the generator.
453 def __getitem__(self, item):
459 if not isinstance(item, tuple):
460 item = (item,)
465 and item and not _is_param_expr(item[0])):
466 item = (item,)
468 new_args = super().__getitem__(item).__args__
850 def __contains__(self, item):
851 key, value = item
1102 '''S.pop([index]) -> item -- remove and return item at index (default last).