Set a raw option in the query. This option is encoded as part of the query parameters without any client-side verification. Use this for settings not directly exposed by the Python client. :param name: The name of the option :param value: The value o
(self, name, value)
| 379 | arg_array.extend(json_args) |
| 380 | |
| 381 | def set_option(self, name, value): |
| 382 | """ |
| 383 | Set a raw option in the query. This option is encoded |
| 384 | as part of the query parameters without any client-side |
| 385 | verification. Use this for settings not directly exposed |
| 386 | by the Python client. |
| 387 | |
| 388 | :param name: The name of the option |
| 389 | :param value: The value of the option |
| 390 | """ |
| 391 | self._params[name] = value |
| 392 | |
| 393 | @property |
| 394 | def params(self): |
no outgoing calls
no test coverage detected