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)
| 216 | arg_array.extend(json_args) |
| 217 | |
| 218 | def set_option(self, name, value): |
| 219 | """ |
| 220 | Set a raw option in the query. This option is encoded |
| 221 | as part of the query parameters without any client-side |
| 222 | verification. Use this for settings not directly exposed |
| 223 | by the Python client. |
| 224 | |
| 225 | :param name: The name of the option |
| 226 | :param value: The value of the option |
| 227 | """ |
| 228 | self._params[name] = value |
| 229 | |
| 230 | @property |
| 231 | def params(self): |
no outgoing calls
no test coverage detected