MCPcopy Create free account
hub / github.com/apache/cassandra-python-driver / make_options_body

Method make_options_body

tests/unit/io/utils.py:220–226  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

218 return c
219
220 def make_options_body(self):
221 options_buf = BytesIO()
222 write_stringmultimap(options_buf, {
223 'CQL_VERSION': ['3.0.1'],
224 'COMPRESSION': []
225 })
226 return options_buf.getvalue()
227
228 def make_error_body(self, code, msg):
229 buf = BytesIO()

Calls 1

write_stringmultimapFunction · 0.90