MCPcopy Index your code
hub / github.com/mongodb/mongo-python-driver / _get_more_uncompressed

Function _get_more_uncompressed

pymongo/message.py:541–545  ·  view source on GitHub ↗

Internal getMore message helper.

(
    collection_name: str, num_to_return: int, cursor_id: int
)

Source from the content-addressed store, hash-verified

539
540
541def _get_more_uncompressed(
542 collection_name: str, num_to_return: int, cursor_id: int
543) -> tuple[int, bytes]:
544 """Internal getMore message helper."""
545 return __pack_message(2005, _get_more_impl(collection_name, num_to_return, cursor_id))
546
547
548if _use_c:

Callers 1

_get_moreFunction · 0.85

Calls 2

__pack_messageFunction · 0.85
_get_more_implFunction · 0.85

Tested by

no test coverage detected