Rowlando13
Rowlando13
@ofek sorry no branch is referenced in #2205. @AndreasBackx what branch were you using?
Do you mean #2205? #590 Explains that there is very deep issues with the parser but other that that does nothing. At the time that I wrote this I thought...
I think #590 might give some useful perspective. Probably keep open until finish parser rewrite.
This is exactly what I was hoping to gather. I am interested in being able to understand the behavior we adopt for parsing reasons from the the behavior which is...
Closed by #3127
Shouldn't it fail? Don't some test s use click's testing which is not thread safe.
I agree. What did you do? I was just planning on looking some tests
There are multiple instances of this: ``` def test_file_args(runner): @click.command() @click.argument("input", type=click.File("rb")) @click.argument("output", type=click.File("wb")) def inout(input, output): while True: chunk = input.read(1024) if not chunk: break output.write(chunk) with runner.isolated_filesystem(): result...
Will fix when rewrite parameter docs to show what the parameter class brings vs the option and argument sub classes.
> We're not dropping support for positive/negative flags. There are many use cases including: > > * Defaults can be dynamic. > > * Shell scripts sometimes want to be...