Internal getMore message helper.
(
collection_name: str, num_to_return: int, cursor_id: int
)
| 539 | |
| 540 | |
| 541 | def _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 | |
| 548 | if _use_c: |
no test coverage detected