module documentation

Checker for deprecated builtins.

Class BadBuiltinChecker Undocumented
Function register Undocumented
Constant BAD_FUNCTIONS Undocumented
Constant BUILTIN_HINTS Undocumented
Constant LIST_COMP_MSG Undocumented
def register(linter: PyLinter): (source)

Undocumented

BAD_FUNCTIONS: list[str] = (source)

Undocumented

Value
['map', 'filter']
BUILTIN_HINTS = (source)

Undocumented

Value
{'map': LIST_COMP_MSG, 'filter': LIST_COMP_MSG}
LIST_COMP_MSG: str = (source)

Undocumented

Value
'Using a list comprehension can be clearer.'