| # Copyright (c) 2006-2014 LOGILAB S.A. (Paris, FRANCE) <[email protected]> |
| # Copyright (c) 2009 Vincent |
| # Copyright (c) 2009 Mads Kiilerich <[email protected]> |
| # Copyright (c) 2012-2014 Google, Inc. |
| # Copyright (c) 2014-2018, 2020 Claudiu Popa <[email protected]> |
| # Copyright (c) 2014-2015 Michal Nowikowski <[email protected]> |
| # Copyright (c) 2014 LCD 47 <[email protected]> |
| # Copyright (c) 2014 Brett Cannon <[email protected]> |
| # Copyright (c) 2014 Arun Persaud <[email protected]> |
| # Copyright (c) 2014 Damien Nozay <[email protected]> |
| # Copyright (c) 2015 Aru Sahni <[email protected]> |
| # Copyright (c) 2015 Florian Bruhin <[email protected]> |
| # Copyright (c) 2015 Simu Toni <[email protected]> |
| # Copyright (c) 2015 Ionel Cristian Maries <[email protected]> |
| # Copyright (c) 2016 Łukasz Rogalski <[email protected]> |
| # Copyright (c) 2016 Moises Lopez <[email protected]> |
| # Copyright (c) 2016 Glenn Matthews <[email protected]> |
| # Copyright (c) 2016 Glenn Matthews <[email protected]> |
| # Copyright (c) 2016 Ashley Whetter <[email protected]> |
| # Copyright (c) 2016 xmo-odoo <[email protected]> |
| # Copyright (c) 2017-2021 Pierre Sassoulas <[email protected]> |
| # Copyright (c) 2017-2018, 2020-2021 hippo91 <[email protected]> |
| # Copyright (c) 2017, 2020 Anthony Sottile <[email protected]> |
| # Copyright (c) 2017-2018 Bryce Guinta <[email protected]> |
| # Copyright (c) 2017 Chris Lamb <[email protected]> |
| # Copyright (c) 2017 Thomas Hisch <[email protected]> |
| # Copyright (c) 2017 Mikhail Fesenko <[email protected]> |
| # Copyright (c) 2017 Craig Citro <[email protected]> |
| # Copyright (c) 2017 Ville Skyttä <[email protected]> |
| # Copyright (c) 2018 ssolanki <[email protected]> |
| # Copyright (c) 2018 Bryce Guinta <[email protected]> |
| # Copyright (c) 2018 Sushobhit <[email protected]> |
| # Copyright (c) 2018 Reverb C <[email protected]> |
| # Copyright (c) 2018 Nick Drozd <[email protected]> |
| # Copyright (c) 2020 Peter Kolbus <[email protected]> |
| # Copyright (c) 2020 Damien Baty <[email protected]> |
| |
| # Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html |
| # For details: https://github.com/PyCQA/pylint/blob/main/LICENSE |
| |
| """some various utilities and helper classes, most of them used in the |
| main pylint class |
| """ |
| |
| from pylint.utils.ast_walker import ASTWalker |
| from pylint.utils.file_state import FileState |
| from pylint.utils.utils import ( |
| HAS_ISORT_5, |
| IsortDriver, |
| _check_csv, |
| _format_option_value, |
| _splitstrip, |
| _unquote, |
| decoding_stream, |
| deprecated_option, |
| diff_string, |
| format_section, |
| get_global_option, |
| get_module_and_frameid, |
| get_rst_section, |
| get_rst_title, |
| normalize_text, |
| register_plugins, |
| safe_decode, |
| tokenize_module, |
| ) |
| |
| __all__ = [ |
| "ASTWalker", |
| "HAS_ISORT_5", |
| "IsortDriver", |
| "_check_csv", |
| "_format_option_value", |
| "_splitstrip", |
| "_unquote", |
| "decoding_stream", |
| "deprecated_option", |
| "diff_string", |
| "FileState", |
| "format_section", |
| "get_global_option", |
| "get_module_and_frameid", |
| "get_rst_section", |
| "get_rst_title", |
| "normalize_text", |
| "register_plugins", |
| "safe_decode", |
| "tokenize_module", |
| ] |