[issue38690] Command line option with &/or without a space results in the same outcome

2019-11-05 Thread Ned Deily
Ned Deily added the comment: That's an interesting question. There is much prior art here dating back to the earliest days of Unix. The Open Group Base Specification has a section dealing with the syntax of utility arguments with suggestions of when or when not a space between the option a

[issue38690] Command line option with &/or without a space results in the same outcome

2019-11-04 Thread jason gors
New submission from jason gors : The syntax in the Command line documentation was unexpected regarding the `-m` option (specifically `python -mtimeit`) [0]. Showing this: ``` python -mtimeit "range(100)" # behaving equivalent to this: python -m timeit "range(100)" ``` This led me to discover