mirror of
https://github.com/PyCQA/flake8.git
synced 2026-03-31 03:06:53 +00:00
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. |
||
|---|---|---|
| .. | ||
| conftest.py | ||
| test_application.py | ||
| test_base_formatter.py | ||
| test_checker_manager.py | ||
| test_config_file_finder.py | ||
| test_debug.py | ||
| test_decision_engine.py | ||
| test_exceptions.py | ||
| test_file_checker.py | ||
| test_file_processor.py | ||
| test_filenameonly_formatter.py | ||
| test_get_local_plugins.py | ||
| test_git.py | ||
| test_legacy_api.py | ||
| test_merged_config_parser.py | ||
| test_nothing_formatter.py | ||
| test_option.py | ||
| test_option_manager.py | ||
| test_plugin.py | ||
| test_plugin_manager.py | ||
| test_plugin_type_manager.py | ||
| test_pyflakes_codes.py | ||
| test_setuptools_command.py | ||
| test_statistics.py | ||
| test_style_guide.py | ||
| test_utils.py | ||
| test_violation.py | ||