<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/click.git/tests/test_shell_completion.py, branch parser-rewrite</title>
<subtitle>github.com: pallets/click
</subtitle>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/click.git/'/>
<entry>
<title>shell completion prioritizes option values over new options</title>
<updated>2022-03-28T15:05:27+00:00</updated>
<author>
<name>Paul Spangler</name>
<email>paul.spangler@ni.com</email>
</author>
<published>2021-08-09T18:27:39+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/click.git/commit/?id=f2e579ab187ca8fdfbe6ce86de08f0e9f62fe4ae'/>
<id>f2e579ab187ca8fdfbe6ce86de08f0e9f62fe4ae</id>
<content type='text'>
Allow option values that start with an option prefix to
complete rather than treating them like new options.

Don't treat count options as needing a value to complete.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Allow option values that start with an option prefix to
complete rather than treating them like new options.

Don't treat count options as needing a value to complete.
</pre>
</div>
</content>
</entry>
<entry>
<title>remove deprecated Command autocompletion parameter</title>
<updated>2021-11-11T00:42:17+00:00</updated>
<author>
<name>David Lord</name>
<email>davidism@gmail.com</email>
</author>
<published>2021-11-11T00:42:17+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/click.git/commit/?id=51736b9566637351362f1eaeb32ea42aecdec704'/>
<id>51736b9566637351362f1eaeb32ea42aecdec704</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>use sys.exit() instead of _fast_exit()</title>
<updated>2021-08-05T16:01:29+00:00</updated>
<author>
<name>taran_lu</name>
<email>taran@houzz.com</email>
</author>
<published>2021-08-03T17:18:49+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/click.git/commit/?id=36e7f199a316eea0e008a1e9b302ff2ddbc0c5c0'/>
<id>36e7f199a316eea0e008a1e9b302ff2ddbc0c5c0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>completion arguments may start with a "/"</title>
<updated>2021-07-04T13:49:49+00:00</updated>
<author>
<name>Sam Schott</name>
<email>ss2151@cam.ac.uk</email>
</author>
<published>2021-05-23T19:55:54+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/click.git/commit/?id=91e388027d2270966e5a75e7a55b8cea3becc66b'/>
<id>91e388027d2270966e5a75e7a55b8cea3becc66b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>apply updated pre-commit hooks</title>
<updated>2021-02-09T01:31:44+00:00</updated>
<author>
<name>David Lord</name>
<email>davidism@gmail.com</email>
</author>
<published>2021-02-09T01:31:44+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/click.git/commit/?id=3f44bac66138570ec9bfb7cefb8b90a5e4c9f91c'/>
<id>3f44bac66138570ec9bfb7cefb8b90a5e4c9f91c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>handle case_sensitive=False when completing choices</title>
<updated>2020-11-01T02:58:23+00:00</updated>
<author>
<name>Felix Nordén</name>
<email>felixnorden@gmail.com</email>
</author>
<published>2020-10-17T10:17:10+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/click.git/commit/?id=b964c1e2cba3915983a6e2f5fcb7f489acd9b33f'/>
<id>b964c1e2cba3915983a6e2f5fcb7f489acd9b33f</id>
<content type='text'>
Co-authored-by: David Lord &lt;davidism@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Co-authored-by: David Lord &lt;davidism@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>get default before processing value</title>
<updated>2020-10-11T01:39:36+00:00</updated>
<author>
<name>David Lord</name>
<email>davidism@gmail.com</email>
</author>
<published>2020-10-11T00:37:55+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/click.git/commit/?id=e79c2b47aa5b456e6c70f980ecf0f883447eb340'/>
<id>e79c2b47aa5b456e6c70f980ecf0f883447eb340</id>
<content type='text'>
This ensures the default value is processed like other values. Some
type converters were adjusted to accept values that are already the
correct type.

Use parameter source instead of value to determine if argument was
supplied on the command line during completion.

Add a parameter source for values from prompt.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This ensures the default value is processed like other values. Some
type converters were adjusted to accept values that are already the
correct type.

Use parameter source instead of value to determine if argument was
supplied on the command line during completion.

Add a parameter source for values from prompt.
</pre>
</div>
</content>
</entry>
<entry>
<title>swap order of instruction string</title>
<updated>2020-10-07T13:39:40+00:00</updated>
<author>
<name>David Lord</name>
<email>davidism@gmail.com</email>
</author>
<published>2020-10-07T13:30:38+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/click.git/commit/?id=7e4a27fc273ceb2af3b790434e6b5470237c6168'/>
<id>7e4a27fc273ceb2af3b790434e6b5470237c6168</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>pass extra context settings to completion</title>
<updated>2020-10-03T21:35:08+00:00</updated>
<author>
<name>David Lord</name>
<email>davidism@gmail.com</email>
</author>
<published>2020-10-03T21:35:08+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/click.git/commit/?id=8981a95d4032fb752ffd0b87059d9048e8c996f1'/>
<id>8981a95d4032fb752ffd0b87059d9048e8c996f1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>don't pass all args to shell_complete methods</title>
<updated>2020-10-03T20:48:14+00:00</updated>
<author>
<name>David Lord</name>
<email>davidism@gmail.com</email>
</author>
<published>2020-10-03T20:48:08+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/click.git/commit/?id=1b9a657efe2de8e1b7084e3c6149d70bc0736d60'/>
<id>1b9a657efe2de8e1b7084e3c6149d70bc0736d60</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
