(cls, f, *args)
| 506 | |
| 507 | @classmethod |
| 508 | def recv_body(cls, f, *args): |
| 509 | options = read_stringmultimap(f) |
| 510 | cql_versions = options.pop('CQL_VERSION') |
| 511 | return cls(cql_versions=cql_versions, options=options) |
| 512 | |
| 513 | |
| 514 | # used for QueryMessage and ExecuteMessage |
nothing calls this directly
no test coverage detected