<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/flake8.git/tests/unit/test_option_manager.py, branch 3.8.4</title>
<subtitle>gitlab.com: pycqa/flake8.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/'/>
<entry>
<title>fix JobsArgument --help output</title>
<updated>2020-06-05T13:25:57+00:00</updated>
<author>
<name>Ruairidh MacLeod</name>
<email>5160559+rkm@users.noreply.github.com</email>
</author>
<published>2020-06-05T13:18:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=9b8f90831426ff518b16787ab31107c38f97d819'/>
<id>9b8f90831426ff518b16787ab31107c38f97d819</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Parse --jobs as a custom argparse type. Fixes #567</title>
<updated>2020-05-13T20:25:51+00:00</updated>
<author>
<name>Ruairidh MacLeod</name>
<email>5160559+rkm@users.noreply.github.com</email>
</author>
<published>2020-05-12T13:23:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=45573570cf706f8490cd631ee6f6a58bc41f8130'/>
<id>45573570cf706f8490cd631ee6f6a58bc41f8130</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix type='str' optparse options</title>
<updated>2020-04-24T17:43:54+00:00</updated>
<author>
<name>Anthony Sottile</name>
<email>asottile@umich.edu</email>
</author>
<published>2020-04-24T17:43:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=3b490bb3c5775fedca7167a98c5bf4aee5e171f7'/>
<id>3b490bb3c5775fedca7167a98c5bf4aee5e171f7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>optmanager: Inherit options from parent argument parsers</title>
<updated>2019-10-25T21:07:43+00:00</updated>
<author>
<name>Eric N. Vander Weele</name>
<email>ericvw@gmail.com</email>
</author>
<published>2019-10-25T19:01:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=1d7558f7da77d67272352d6ab8ca8a476cf80411'/>
<id>1d7558f7da77d67272352d6ab8ca8a476cf80411</id>
<content type='text'>
Allow for including options from parent `argparse.ArgumentParser`
objects in preparation of splitting out the handling of preliminary
options from the `OptionManager`.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Allow for including options from parent `argparse.ArgumentParser`
objects in preparation of splitting out the handling of preliminary
options from the `OptionManager`.
</pre>
</div>
</content>
</entry>
<entry>
<title>Type annotate flake8.options.manager</title>
<updated>2019-09-07T21:37:50+00:00</updated>
<author>
<name>Anthony Sottile</name>
<email>asottile@umich.edu</email>
</author>
<published>2019-09-07T21:37:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=8c4e42afaa3b25683be167d9b4ac28f8d7d25a4b'/>
<id>8c4e42afaa3b25683be167d9b4ac28f8d7d25a4b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Set configuration file-provided values via ArgumentParser.set_defaults()</title>
<updated>2019-08-31T04:10:46+00:00</updated>
<author>
<name>Eric N. Vander Weele</name>
<email>ericvw@gmail.com</email>
</author>
<published>2019-08-30T19:17:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=aadd09dd8bd91092b22b24b860d4ff2476313b1c'/>
<id>aadd09dd8bd91092b22b24b860d4ff2476313b1c</id>
<content type='text'>
When calling `ArgumentParser.parse_args()` with the `namespace`
argument, command-line options are just added to the  namespace without
going through any of the argument parsing and type conversion logic
(e.g., the `type` keyword argument of `ArgumentParser.add_argument()`).
In other words, it is assumed that a namespace is well-formed from a
previous invocation of `ArgumentParser.parse_args()`.

The `values` parameter is intended to be values already-provided from
configuration files.  To take advantage of the logic defined by
`ArgumentParser.add_argument()`,  utilize
`ArgumentParser.set_defaults()` instead.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When calling `ArgumentParser.parse_args()` with the `namespace`
argument, command-line options are just added to the  namespace without
going through any of the argument parsing and type conversion logic
(e.g., the `type` keyword argument of `ArgumentParser.add_argument()`).
In other words, it is assumed that a namespace is well-formed from a
previous invocation of `ArgumentParser.parse_args()`.

The `values` parameter is intended to be values already-provided from
configuration files.  To take advantage of the logic defined by
`ArgumentParser.add_argument()`,  utilize
`ArgumentParser.set_defaults()` instead.
</pre>
</div>
</content>
</entry>
<entry>
<title>Test default provided options are forwarded</title>
<updated>2019-08-31T04:10:46+00:00</updated>
<author>
<name>Eric N. Vander Weele</name>
<email>ericvw@gmail.com</email>
</author>
<published>2019-08-30T19:17:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=b231c10016fa50faf7ea87b2e0530655c2184bf4'/>
<id>b231c10016fa50faf7ea87b2e0530655c2184bf4</id>
<content type='text'>
Ensure options provided external to the command-line (i.e.,
configuration files) are present in the final result of options.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Ensure options provided external to the command-line (i.e.,
configuration files) are present in the final result of options.
</pre>
</div>
</content>
</entry>
<entry>
<title>Put plugin options into separate argparse groups</title>
<updated>2019-08-19T22:58:34+00:00</updated>
<author>
<name>Anthony Sottile</name>
<email>asottile@umich.edu</email>
</author>
<published>2019-08-19T22:58:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=8fd36ba15b2673d0d9a230da88c7353013e44574'/>
<id>8fd36ba15b2673d0d9a230da88c7353013e44574</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>move from optparse to argparse</title>
<updated>2019-08-18T03:09:45+00:00</updated>
<author>
<name>Anthony Sottile</name>
<email>asottile@umich.edu</email>
</author>
<published>2019-08-11T01:28:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=b66ebd7034090f96cb0806e5e2d8026b6e35d045'/>
<id>b66ebd7034090f96cb0806e5e2d8026b6e35d045</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix up test files for W504</title>
<updated>2018-10-20T17:37:32+00:00</updated>
<author>
<name>Ian Stapleton Cordasco</name>
<email>graffatcolmingov@gmail.com</email>
</author>
<published>2018-10-20T17:37:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=56b86ba9fe98195ebac5f8c2a8b2941ebe3ffc49'/>
<id>56b86ba9fe98195ebac5f8c2a8b2941ebe3ffc49</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
