Raised if the length of a command line argument exceeds the limit allowed on Windows.
| 215 | |
| 216 | |
| 217 | class CommandTooLong(Exception): |
| 218 | """Raised if the length of a command line argument exceeds the limit allowed on Windows.""" |
| 219 | |
| 220 | |
| 221 | def invoke_command(args: list[str]) -> int: |