New submission from rhubarbdog x :
Hi
i have a directory containing a directory `bug` and the python program
`bad.py`. The code for `bad.py` is
```
import os
os.chdir('bug')
print(7/0)
```
directory `bug` contains a file `bad.py` this file contents are
```
test 1
test 2
test 3
tes
New submission from rhubarbdog x :
I've found a bug with argparse and reported it upstream.
`command --option source destination` works
`command soucre destination --option` works
but `command source --option destination` doesn't outputting the usage text
block associated `do_comma
rhubarbdog x added the comment:
This is when running is a shell which inherits from cmd.Cmd
--
___
Python tracker
<https://bugs.python.org/issue36863>
___
___
rhubarbdog x added the comment:
I've just done a test and from a command shell (bash or whatever) the following
python script when ran produces the following
$ python3 command.py 0ne thwo three
files: ['0ne', 'thwo', 'three']
sensors 1
freq 1200
$ pyt