<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/cmd2-git.git/cmd2/argparse_custom.py, branch 2.4.3</title>
<subtitle>github.com: python-cmd2/cmd2.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/cmd2-git.git/'/>
<entry>
<title>Fixed mypy and flake8 errors.</title>
<updated>2023-01-28T00:24:27+00:00</updated>
<author>
<name>Kevin Van Brunt</name>
<email>kmvanbrunt@gmail.com</email>
</author>
<published>2023-01-27T23:50:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/cmd2-git.git/commit/?id=694718a970fb5af1fde5f2f60eb4bf1845c9b747'/>
<id>694718a970fb5af1fde5f2f60eb4bf1845c9b747</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use latest version of mypy and fix type hinting accordingly (#1239)</title>
<updated>2022-07-14T16:59:16+00:00</updated>
<author>
<name>Todd Leonhardt</name>
<email>todd.leonhardt@gmail.com</email>
</author>
<published>2022-07-14T16:59:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/cmd2-git.git/commit/?id=e95af81acb9c6829c969f76e40658356a4808edb'/>
<id>e95af81acb9c6829c969f76e40658356a4808edb</id>
<content type='text'>
* Use latest version of mypy and fix type hinting accordingly

Also:
- Update Pipfile to never require mock since we only support Python 3.6+
- Remove Azure Pipelines badge from Readme and fix section links there
- Added an "inv format" task to run black and isort to auto-format all code before a commit

* Try to fix type errors on versions prior to 3.8

* Restored correct types in argparse_custom.py</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Use latest version of mypy and fix type hinting accordingly

Also:
- Update Pipfile to never require mock since we only support Python 3.6+
- Remove Azure Pipelines badge from Readme and fix section links there
- Added an "inv format" task to run black and isort to auto-format all code before a commit

* Try to fix type errors on versions prior to 3.8

* Restored correct types in argparse_custom.py</pre>
</div>
</content>
</entry>
<entry>
<title>ArgparseCompleter now sorts CompletionItems created with numerical values as numbers.</title>
<updated>2021-11-18T21:11:22+00:00</updated>
<author>
<name>Kevin Van Brunt</name>
<email>kmvanbrunt@gmail.com</email>
</author>
<published>2021-11-16T02:28:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/cmd2-git.git/commit/?id=f2c4fd160d58aa540c7ccd0989d4e0e68ff56216'/>
<id>f2c4fd160d58aa540c7ccd0989d4e0e68ff56216</id>
<content type='text'>
Completion hint tables now right-align the left column if the hints have a numerical type.

Fixed issue introduced in 2.3.0 with AlternatingTable, BorderedTable, and SimpleTable that caused
header alignment settings to be overridden by data alignment settings.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Completion hint tables now right-align the left column if the hints have a numerical type.

Fixed issue introduced in 2.3.0 with AlternatingTable, BorderedTable, and SimpleTable that caused
header alignment settings to be overridden by data alignment settings.
</pre>
</div>
</content>
</entry>
<entry>
<title>Added ability to use CompletionItems as argparse choices</title>
<updated>2021-11-18T21:11:22+00:00</updated>
<author>
<name>Kevin Van Brunt</name>
<email>kmvanbrunt@gmail.com</email>
</author>
<published>2021-11-15T20:04:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/cmd2-git.git/commit/?id=75f8008287923cd7a1728d56502f4fda6343933b'/>
<id>75f8008287923cd7a1728d56502f4fda6343933b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Updating docs</title>
<updated>2021-09-01T18:20:26+00:00</updated>
<author>
<name>Kevin Van Brunt</name>
<email>kmvanbrunt@gmail.com</email>
</author>
<published>2021-09-01T18:12:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/cmd2-git.git/commit/?id=ceacf225e5e267a96bf5db4fc5bb7702fa6f8a72'/>
<id>ceacf225e5e267a96bf5db4fc5bb7702fa6f8a72</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Added ap_completer_type arg to Cmd2ArgumentParser.__init__().</title>
<updated>2021-09-01T17:33:22+00:00</updated>
<author>
<name>Kevin Van Brunt</name>
<email>kmvanbrunt@gmail.com</email>
</author>
<published>2021-08-31T20:41:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/cmd2-git.git/commit/?id=81d5f0458ee767f4c1cd76cb9a8f4036beb15273'/>
<id>81d5f0458ee767f4c1cd76cb9a8f4036beb15273</id>
<content type='text'>
Added unit tests for custom ArgparseCompleter
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Added unit tests for custom ArgparseCompleter
</pre>
</div>
</content>
</entry>
<entry>
<title>Refactored custom ArgparseCompleter functionality so they will now be set using methods on ArgumentParser objects.</title>
<updated>2021-09-01T17:33:22+00:00</updated>
<author>
<name>Kevin Van Brunt</name>
<email>kmvanbrunt@gmail.com</email>
</author>
<published>2021-08-25T20:54:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/cmd2-git.git/commit/?id=bf558c5c774685c5806e38d349ab2e129b76ef6b'/>
<id>bf558c5c774685c5806e38d349ab2e129b76ef6b</id>
<content type='text'>
This fixes issue where subcommands did not use the correct custom ArgparseCompleter type.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This fixes issue where subcommands did not use the correct custom ArgparseCompleter type.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'master' into topic_width</title>
<updated>2021-08-23T18:20:09+00:00</updated>
<author>
<name>Kevin Van Brunt</name>
<email>kmvanbrunt@gmail.com</email>
</author>
<published>2021-08-23T18:20:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/cmd2-git.git/commit/?id=16e145a27ea7b4c2dc348699c8f4cc11be4dc0b6'/>
<id>16e145a27ea7b4c2dc348699c8f4cc11be4dc0b6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Updated documentation for setting custom parsers</title>
<updated>2021-08-23T18:17:12+00:00</updated>
<author>
<name>Kevin Van Brunt</name>
<email>kmvanbrunt@gmail.com</email>
</author>
<published>2021-08-23T17:43:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/cmd2-git.git/commit/?id=70846b510ded509666712460401c00550dfbdfcf'/>
<id>70846b510ded509666712460401c00550dfbdfcf</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Applied black format</title>
<updated>2021-08-23T18:17:12+00:00</updated>
<author>
<name>Eric Lin</name>
<email>anselor@gmail.com</email>
</author>
<published>2021-08-19T21:22:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/cmd2-git.git/commit/?id=0641c902df0778774768c55ddcca3a518f13e191'/>
<id>0641c902df0778774768c55ddcca3a518f13e191</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
