diff --git a/doc/whatsnew/fragments/10071.breaking b/doc/whatsnew/fragments/10071.breaking new file mode 100644 index 0000000000..7b75760043 --- /dev/null +++ b/doc/whatsnew/fragments/10071.breaking @@ -0,0 +1,4 @@ +The ``async.py`` checker module has been renamed to ``async_checker.py`` since ``async`` is a Python keyword +and cannot be imported directly. This allows for better testing and extensibility of the async checker functionality. + +Refs #10071 diff --git a/pylint/checkers/async.py b/pylint/checkers/async_checker.py similarity index 100% rename from pylint/checkers/async.py rename to pylint/checkers/async_checker.py