From 2b5bce1eea61e0654241e9a9e301bbd3a6234879 Mon Sep 17 00:00:00 2001 From: Gwanbin Park Date: Thu, 31 Oct 2024 17:41:56 -0700 Subject: [PATCH 1/3] rename async to async_checker --- pylint/checkers/{async.py => async_checker.py} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename pylint/checkers/{async.py => async_checker.py} (100%) 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 From 141a5cbe41275d16b8a958646fbaae248306ed18 Mon Sep 17 00:00:00 2001 From: Gwanbin Park Date: Mon, 4 Nov 2024 17:07:54 -0800 Subject: [PATCH 2/3] add changelog --- doc/whatsnew/fragments/10071.breaking | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 doc/whatsnew/fragments/10071.breaking diff --git a/doc/whatsnew/fragments/10071.breaking b/doc/whatsnew/fragments/10071.breaking new file mode 100644 index 0000000000..70b8806265 --- /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 \ No newline at end of file From 41126dd7301e0830851add2b9e7c451424ef5947 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 5 Nov 2024 01:08:53 +0000 Subject: [PATCH 3/3] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- doc/whatsnew/fragments/10071.breaking | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/whatsnew/fragments/10071.breaking b/doc/whatsnew/fragments/10071.breaking index 70b8806265..7b75760043 100644 --- a/doc/whatsnew/fragments/10071.breaking +++ b/doc/whatsnew/fragments/10071.breaking @@ -1,4 +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 \ No newline at end of file +Refs #10071