( arguments,
modifiers,
buffer_command = DEFAULT_BUFFER_COMMAND,
extra_data = None,
skip_post_command_action = False )
| 229 | |
| 230 | |
| 231 | def SendCommandRequest( arguments, |
| 232 | modifiers, |
| 233 | buffer_command = DEFAULT_BUFFER_COMMAND, |
| 234 | extra_data = None, |
| 235 | skip_post_command_action = False ): |
| 236 | request = SendCommandRequestAsync( arguments, |
| 237 | extra_data = extra_data, |
| 238 | silent = False ) |
| 239 | # Block here to get the response |
| 240 | if not skip_post_command_action: |
| 241 | request.RunPostCommandActionsIfNeeded( modifiers, buffer_command ) |
| 242 | return request.Response() |
| 243 | |
| 244 | |
| 245 | def GetCommandResponse( arguments, extra_data = None ): |
no test coverage detected