From f6d4b2bec24a46db4cc06fc7d224d6d32a541cae Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 23 Dec 2025 09:33:11 +0000 Subject: [PATCH 1/2] Initial plan From 571f77a60875654c15f347ff9eb26b43460ec5a9 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 23 Dec 2025 09:36:18 +0000 Subject: [PATCH 2/2] Fix Sphinx reference syntax and typo in protocol.rst - Fix extra colon in Sphinx reference (::meth: -> :meth:) - Fix typo in class name (NumpyProtocolHander -> NumpyProtocolHandler) Co-authored-by: mykaul <4655593+mykaul@users.noreply.github.com> --- docs/api/cassandra/protocol.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/api/cassandra/protocol.rst b/docs/api/cassandra/protocol.rst index 258c6baeb6..8b8f303574 100644 --- a/docs/api/cassandra/protocol.rst +++ b/docs/api/cassandra/protocol.rst @@ -16,7 +16,7 @@ holding custom key/value pairs. By default these are ignored by the server. They can be useful for servers implementing a custom QueryHandler. -See :meth:`.Session.execute`, ::meth:`.Session.execute_async`, :attr:`.ResponseFuture.custom_payload`. +See :meth:`.Session.execute`, :meth:`.Session.execute_async`, :attr:`.ResponseFuture.custom_payload`. .. autoclass:: _ProtocolHandler @@ -53,5 +53,5 @@ These protocol handlers comprise different parsers, and return results as descri - LazyProtocolHandler: near drop-in replacement for the above, except that it returns an iterator over rows, lazily decoded into the default row format (this is more efficient since all decoded results are not materialized at once) -- NumpyProtocolHander: deserializes results directly into NumPy arrays. This facilitates efficient integration with +- NumpyProtocolHandler: deserializes results directly into NumPy arrays. This facilitates efficient integration with analysis toolkits such as Pandas.