MCPcopy Create free account
hub / github.com/anthropics/anthropic-sdk-python / _make_sync_iterator

Function _make_sync_iterator

tests/test_client.py:92–96  ·  view source on GitHub ↗
(iterable: Iterable[T], counter: Optional[Counter] = None)

Source from the content-addressed store, hash-verified

90
91
92def _make_sync_iterator(iterable: Iterable[T], counter: Optional[Counter] = None) -> Iterator[T]:
93 for item in iterable:
94 if counter:
95 counter.value += 1
96 yield item
97
98
99async def _make_async_iterator(iterable: Iterable[T], counter: Optional[Counter] = None) -> AsyncIterator[T]:

Calls

no outgoing calls

Tested by

no test coverage detected