```
1: kd> !py myscript--help
usage: !py [options] [file]
Options:
-g --global : run code in the common namespace
-l --local : run code in the isolate namespace
```
Expected:
"--help" pass into script as a parameter
Actually:
it is catched by pykd command line parser
1: kd> !py myscript--help
usage: !py [options] [file]
Options:
-g --global : run code in the common namespace
-l --local : run code in the isolate namespace
```
Expected:
"--help" pass into script as a parameter
Actually:
it is catched by pykd command line parser